結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,272 KB
testcase_01 AC 37 ms
52,000 KB
testcase_02 AC 43 ms
51,752 KB
testcase_03 AC 38 ms
52,548 KB
testcase_04 AC 39 ms
52,460 KB
testcase_05 AC 37 ms
52,928 KB
testcase_06 AC 38 ms
52,400 KB
testcase_07 AC 39 ms
52,448 KB
testcase_08 AC 41 ms
52,572 KB
testcase_09 AC 42 ms
52,976 KB
testcase_10 AC 41 ms
52,124 KB
testcase_11 AC 41 ms
52,504 KB
testcase_12 AC 39 ms
52,620 KB
testcase_13 AC 44 ms
52,692 KB
testcase_14 AC 42 ms
52,368 KB
testcase_15 AC 43 ms
52,276 KB
testcase_16 AC 41 ms
53,312 KB
testcase_17 AC 41 ms
53,356 KB
testcase_18 AC 40 ms
52,952 KB
testcase_19 AC 43 ms
52,452 KB
testcase_20 AC 42 ms
52,112 KB
testcase_21 AC 40 ms
52,952 KB
testcase_22 AC 42 ms
52,584 KB
testcase_23 AC 38 ms
52,264 KB
testcase_24 AC 40 ms
52,000 KB
testcase_25 AC 37 ms
52,976 KB
testcase_26 AC 38 ms
52,204 KB
testcase_27 AC 38 ms
53,152 KB
testcase_28 AC 38 ms
52,216 KB
testcase_29 AC 37 ms
52,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1:
    print(1)
    exit()
x = [0,1,1]
for i in range(3,10000):
    x.append(x[-2]+x[-1])
    x[-1] %= n
    if x[-1] == 0:
        print(i)
        break
0