Submission #155356


Source Code Expand

import std.stdio,
       std.conv,
       std.string;

void main(){
  (int n){
    int f(int n){
      if(n == 1)
        return 0;
      if(n == 2)
        return 1;
        return f(n-2) + f(n-1);
    }
    return f(n) / 10007;
  }(readln.chomp.to!int).writeln;
}

Submission Info

Submission Time
Task B - トリボナッチ数列
User alpha_kai
Language D (DMD 2.060)
Score 0
Code Size 282 Byte
Status WA
Exec Time 2034 ms
Memory 16548 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 2
WA × 6
TLE × 25
Set Name Test Cases
All test_1.txt, test_1000000.txt, test_1002.txt, test_104.txt, test_107843.txt, test_10980.txt, test_1212.txt, test_1238.txt, test_13194.txt, test_14.txt, test_16.txt, test_2.txt, test_210782.txt, test_21694.txt, test_243.txt, test_24916.txt, test_278.txt, test_3.txt, test_31.txt, test_32.txt, test_42.txt, test_5555.txt, test_567914.txt, test_61868.txt, test_765671.txt, test_8195.txt, test_8353.txt, test_9.txt, test_9625.txt, test_97.txt, test_998.txt, test_999998.txt, test_999999.txt
Case Name Status Exec Time Memory
sample_01.txt WA 21 ms 796 KB
sample_02.txt AC 20 ms 804 KB
sample_03.txt TLE 2030 ms 2468 KB
test_1.txt AC 20 ms 796 KB
test_1000000.txt TLE 2031 ms 16548 KB
test_1002.txt TLE 2030 ms 924 KB
test_104.txt TLE 2030 ms 932 KB
test_107843.txt TLE 2029 ms 2592 KB
test_10980.txt TLE 2029 ms 1008 KB
test_1212.txt TLE 2030 ms 924 KB
test_1238.txt TLE 2030 ms 936 KB
test_13194.txt TLE 2029 ms 1060 KB
test_14.txt WA 19 ms 908 KB
test_16.txt WA 21 ms 800 KB
test_2.txt AC 20 ms 928 KB
test_210782.txt TLE 2030 ms 4188 KB
test_21694.txt TLE 2034 ms 1188 KB
test_243.txt TLE 2030 ms 928 KB
test_24916.txt TLE 2029 ms 1312 KB
test_278.txt TLE 2029 ms 932 KB
test_3.txt WA 20 ms 924 KB
test_31.txt WA 34 ms 928 KB
test_32.txt WA 42 ms 928 KB
test_42.txt TLE 2029 ms 924 KB
test_5555.txt TLE 2030 ms 932 KB
test_567914.txt TLE 2031 ms 9760 KB
test_61868.txt TLE 2029 ms 1832 KB
test_765671.txt TLE 2031 ms 12900 KB
test_8195.txt TLE 2029 ms 1048 KB
test_8353.txt TLE 2029 ms 1056 KB
test_9.txt WA 20 ms 916 KB
test_9625.txt TLE 2029 ms 1064 KB
test_97.txt TLE 2029 ms 928 KB
test_998.txt TLE 2028 ms 928 KB
test_999998.txt TLE 2031 ms 16540 KB
test_999999.txt TLE 2031 ms 16548 KB