Submission #155343


Source Code Expand

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys

def main():
    n = int(sys.stdin.readline())
    tn = 1
    d = [0,0,1]
    i = 0
    if n>3:
        for j in xrange(4,n+1):
            tn = d[0]+d[1]+d[2]
            d[i]=tn
            i+=1
            if i==3: i=0
            
    elif n==3:
        tn=1
    elif n==2 or n==1:
        tn=0
    
    print tn%10007

if __name__=='__main__':
    main()

Submission Info

Submission Time
Task B - トリボナッチ数列
User qrrakakh
Language Python (2.7.3)
Score 0
Code Size 442 Byte
Status TLE
Exec Time 2031 ms
Memory 3576 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 27
TLE × 6
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 AC 57 ms 3376 KB
sample_02.txt AC 50 ms 3380 KB
sample_03.txt AC 653 ms 3500 KB
test_1.txt AC 47 ms 3324 KB
test_1000000.txt TLE 2030 ms 3504 KB
test_1002.txt AC 50 ms 3328 KB
test_104.txt AC 49 ms 3388 KB
test_107843.txt AC 746 ms 3492 KB
test_10980.txt AC 61 ms 3328 KB
test_1212.txt AC 48 ms 3328 KB
test_1238.txt AC 49 ms 3392 KB
test_13194.txt AC 65 ms 3380 KB
test_14.txt AC 46 ms 3380 KB
test_16.txt AC 49 ms 3388 KB
test_2.txt AC 49 ms 3388 KB
test_210782.txt TLE 2030 ms 3576 KB
test_21694.txt AC 85 ms 3388 KB
test_243.txt AC 49 ms 3328 KB
test_24916.txt AC 92 ms 3388 KB
test_278.txt AC 49 ms 3376 KB
test_3.txt AC 49 ms 3320 KB
test_31.txt AC 49 ms 3392 KB
test_32.txt AC 48 ms 3392 KB
test_42.txt AC 49 ms 3328 KB
test_5555.txt AC 52 ms 3384 KB
test_567914.txt TLE 2030 ms 3492 KB
test_61868.txt AC 287 ms 3380 KB
test_765671.txt TLE 2030 ms 3512 KB
test_8195.txt AC 59 ms 3336 KB
test_8353.txt AC 56 ms 3308 KB
test_9.txt AC 49 ms 3384 KB
test_9625.txt AC 58 ms 3392 KB
test_97.txt AC 48 ms 3380 KB
test_998.txt AC 49 ms 3388 KB
test_999998.txt TLE 2031 ms 3572 KB
test_999999.txt TLE 2030 ms 3524 KB