Submission #6902109


Source Code Expand

n = int(input())

a = [0] * n
a[2] =1 
for i in range(3, n):
    a[i] = a[i-3] + a[i-2] + a[i-1]

print(a[n-1]%10007)

Submission Info

Submission Time
Task B - トリボナッチ数列
User rkakamilan
Language Python (3.4.3)
Score 0
Code Size 124 Byte
Status RE
Exec Time 2280 ms
Memory 679028 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 25
TLE × 6
MLE × 2
RE × 3
Set Name Test Cases
All sample_01.txt, sample_02.txt, sample_03.txt, 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 AC 17 ms 2940 KB
sample_02.txt RE 17 ms 2940 KB
sample_03.txt MLE 745 ms 584564 KB
test_1.txt RE 18 ms 2940 KB
test_1000000.txt TLE 2280 ms -1966860 KB
test_1002.txt AC 18 ms 3060 KB
test_104.txt AC 18 ms 2940 KB
test_107843.txt MLE 844 ms 679028 KB
test_10980.txt AC 31 ms 10484 KB
test_1212.txt AC 18 ms 3060 KB
test_1238.txt AC 18 ms 3060 KB
test_13194.txt AC 37 ms 13684 KB
test_14.txt AC 17 ms 2940 KB
test_16.txt AC 17 ms 2940 KB
test_2.txt RE 18 ms 2940 KB
test_210782.txt TLE 2266 ms -1962124 KB
test_21694.txt AC 63 ms 31220 KB
test_243.txt AC 17 ms 2940 KB
test_24916.txt AC 76 ms 40052 KB
test_278.txt AC 17 ms 2940 KB
test_3.txt AC 17 ms 2940 KB
test_31.txt AC 18 ms 2940 KB
test_32.txt AC 17 ms 2940 KB
test_42.txt AC 17 ms 2940 KB
test_5555.txt AC 22 ms 4980 KB
test_567914.txt TLE 2268 ms -1961996 KB
test_61868.txt AC 322 ms 226804 KB
test_765671.txt TLE 2263 ms -1974156 KB
test_8195.txt AC 27 ms 7284 KB
test_8353.txt AC 26 ms 7412 KB
test_9.txt AC 18 ms 2940 KB
test_9625.txt AC 29 ms 8820 KB
test_97.txt AC 17 ms 3060 KB
test_998.txt AC 18 ms 3060 KB
test_999998.txt TLE 2266 ms -1980300 KB
test_999999.txt TLE 2264 ms -1964428 KB