結果

問題 No.2749 随伴関手入門
ユーザー pitPpitP
提出日時 2024-05-10 21:25:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-05-10 21:25:23
合計ジャッジ時間 2,070 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,072 KB
testcase_01 AC 33 ms
53,156 KB
testcase_02 AC 33 ms
52,764 KB
testcase_03 AC 34 ms
53,996 KB
testcase_04 AC 34 ms
53,388 KB
testcase_05 AC 34 ms
53,100 KB
testcase_06 AC 36 ms
53,564 KB
testcase_07 AC 35 ms
53,912 KB
testcase_08 AC 33 ms
53,260 KB
testcase_09 AC 34 ms
54,040 KB
testcase_10 AC 33 ms
53,516 KB
testcase_11 AC 36 ms
53,076 KB
testcase_12 AC 33 ms
53,044 KB
testcase_13 AC 33 ms
52,852 KB
testcase_14 AC 33 ms
53,288 KB
testcase_15 AC 33 ms
54,332 KB
testcase_16 AC 36 ms
54,020 KB
testcase_17 AC 33 ms
53,432 KB
testcase_18 AC 33 ms
52,752 KB
testcase_19 AC 33 ms
52,932 KB
testcase_20 AC 32 ms
53,472 KB
testcase_21 AC 34 ms
53,204 KB
testcase_22 AC 34 ms
53,244 KB
testcase_23 AC 38 ms
53,908 KB
testcase_24 AC 44 ms
54,264 KB
testcase_25 AC 35 ms
54,436 KB
testcase_26 AC 35 ms
53,536 KB
testcase_27 AC 36 ms
53,076 KB
testcase_28 AC 36 ms
52,772 KB
testcase_29 AC 36 ms
53,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N == 1:
    print(1)
elif N == 2:
    print(3)
else:
    F = [0] * (101010)
    F[1] = F[2] = 1
    for n in range(3, 100000):
        F[n] = (F[n - 1] + F[n - 2]) % N
        if F[n] == 0:
            exit(print(n))
0