Submission #3418649


Source Code Expand

#include<iostream>
using namespace std;
int n;
int fie(int n){
	if(n == 0 || n == 1){
		return 1;
	}
	else if(n == 2){
		return 2;
	}
	else {
		return fie(n - 1) + fie(n - 2);
	}
}
int main(){
	cin >> n;
	cout << fie(n) <<endl;
	return 0;
}

Submission Info

Submission Time
Task A - 算盤の書
User luogu_bot2
Language C++ (GCC 5.4.1)
Score 0
Code Size 258 Byte
Status TLE
Exec Time 2103 ms
Memory 256 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 44
TLE × 2
Set Name Test Cases
All 00_sample1, 00_sample2, 00_sample3, 10_testcase00, 10_testcase01, 10_testcase02, 10_testcase03, 10_testcase04, 10_testcase05, 10_testcase06, 10_testcase07, 10_testcase08, 10_testcase09, 10_testcase10, 10_testcase11, 10_testcase12, 10_testcase13, 10_testcase14, 10_testcase15, 10_testcase16, 10_testcase17, 10_testcase18, 10_testcase19, 10_testcase20, 10_testcase21, 10_testcase22, 10_testcase23, 10_testcase24, 10_testcase25, 10_testcase26, 10_testcase27, 10_testcase28, 10_testcase29, 10_testcase30, 10_testcase31, 10_testcase32, 10_testcase33, 10_testcase34, 10_testcase35, 10_testcase36, 10_testcase37, 10_testcase38, 10_testcase39, 10_testcase40, 10_testcase41, 10_testcase42
Case Name Status Exec Time Memory
00_sample1 AC 1 ms 256 KB
00_sample2 AC 1 ms 256 KB
00_sample3 TLE 2103 ms 256 KB
10_testcase00 AC 1 ms 256 KB
10_testcase01 AC 1 ms 256 KB
10_testcase02 AC 1 ms 256 KB
10_testcase03 AC 1 ms 256 KB
10_testcase04 AC 13 ms 256 KB
10_testcase05 AC 1 ms 256 KB
10_testcase06 AC 1 ms 256 KB
10_testcase07 AC 1 ms 256 KB
10_testcase08 TLE 2103 ms 256 KB
10_testcase09 AC 1 ms 256 KB
10_testcase10 AC 2 ms 256 KB
10_testcase11 AC 1 ms 256 KB
10_testcase12 AC 1 ms 256 KB
10_testcase13 AC 51 ms 256 KB
10_testcase14 AC 1 ms 256 KB
10_testcase15 AC 82 ms 256 KB
10_testcase16 AC 6 ms 256 KB
10_testcase17 AC 1 ms 256 KB
10_testcase18 AC 1 ms 256 KB
10_testcase19 AC 554 ms 256 KB
10_testcase20 AC 132 ms 256 KB
10_testcase21 AC 1 ms 256 KB
10_testcase22 AC 1450 ms 256 KB
10_testcase23 AC 1 ms 256 KB
10_testcase24 AC 212 ms 256 KB
10_testcase25 AC 1 ms 256 KB
10_testcase26 AC 1 ms 256 KB
10_testcase27 AC 1 ms 256 KB
10_testcase28 AC 1 ms 256 KB
10_testcase29 AC 1 ms 256 KB
10_testcase30 AC 896 ms 256 KB
10_testcase31 AC 343 ms 256 KB
10_testcase32 AC 2 ms 256 KB
10_testcase33 AC 1 ms 256 KB
10_testcase34 AC 20 ms 256 KB
10_testcase35 AC 1 ms 256 KB
10_testcase36 AC 1 ms 256 KB
10_testcase37 AC 9 ms 256 KB
10_testcase38 AC 1 ms 256 KB
10_testcase39 AC 4 ms 256 KB
10_testcase40 AC 32 ms 256 KB
10_testcase41 AC 3 ms 256 KB
10_testcase42 AC 2 ms 256 KB