Submission #1680711


Source Code Expand

N = int(input())
a = []
a.extend([0, 0, 1])


def sequence(n):
    for i in range(n):
        x = a[i+2] + a[i+1] + a[i]
        a.append(x)


def judge(x):
    print(a[x-1] % 10007)


sequence(100000)
judge(N)

Submission Info

Submission Time
Task B - トリボナッチ数列
User minimalism000
Language Python (3.4.3)
Score 0
Code Size 226 Byte
Status MLE
Exec Time 720 ms
Memory 585076 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
MLE × 36
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 MLE 712 ms 585076 KB
sample_02.txt MLE 702 ms 584692 KB
sample_03.txt MLE 708 ms 584692 KB
test_1.txt MLE 702 ms 584692 KB
test_1000000.txt MLE 705 ms 584692 KB
test_1002.txt MLE 710 ms 584692 KB
test_104.txt MLE 704 ms 584692 KB
test_107843.txt MLE 703 ms 584692 KB
test_10980.txt MLE 720 ms 584692 KB
test_1212.txt MLE 715 ms 584692 KB
test_1238.txt MLE 704 ms 584692 KB
test_13194.txt MLE 711 ms 584692 KB
test_14.txt MLE 708 ms 584692 KB
test_16.txt MLE 719 ms 584692 KB
test_2.txt MLE 706 ms 584692 KB
test_210782.txt MLE 716 ms 584692 KB
test_21694.txt MLE 708 ms 584692 KB
test_243.txt MLE 709 ms 584692 KB
test_24916.txt MLE 709 ms 584692 KB
test_278.txt MLE 706 ms 584692 KB
test_3.txt MLE 700 ms 584692 KB
test_31.txt MLE 703 ms 584692 KB
test_32.txt MLE 709 ms 584692 KB
test_42.txt MLE 711 ms 584692 KB
test_5555.txt MLE 708 ms 584692 KB
test_567914.txt MLE 701 ms 584692 KB
test_61868.txt MLE 705 ms 584692 KB
test_765671.txt MLE 702 ms 584692 KB
test_8195.txt MLE 709 ms 584692 KB
test_8353.txt MLE 709 ms 584692 KB
test_9.txt MLE 707 ms 584692 KB
test_9625.txt MLE 703 ms 584692 KB
test_97.txt MLE 704 ms 584692 KB
test_998.txt MLE 706 ms 584692 KB
test_999998.txt MLE 708 ms 584692 KB
test_999999.txt MLE 705 ms 584692 KB