結果

問題 No.2749 随伴関手入門
ユーザー rlangevinrlangevin
提出日時 2024-05-10 21:25:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 62,196 KB
最終ジャッジ日時 2024-05-10 21:25:30
合計ジャッジ時間 2,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
61,408 KB
testcase_01 AC 43 ms
61,804 KB
testcase_02 AC 45 ms
60,636 KB
testcase_03 AC 44 ms
59,872 KB
testcase_04 AC 45 ms
60,452 KB
testcase_05 AC 47 ms
61,492 KB
testcase_06 AC 44 ms
60,228 KB
testcase_07 AC 47 ms
62,196 KB
testcase_08 AC 43 ms
60,092 KB
testcase_09 AC 44 ms
60,780 KB
testcase_10 AC 44 ms
59,772 KB
testcase_11 AC 42 ms
60,116 KB
testcase_12 AC 48 ms
61,152 KB
testcase_13 AC 45 ms
61,108 KB
testcase_14 AC 44 ms
59,528 KB
testcase_15 AC 43 ms
59,160 KB
testcase_16 AC 42 ms
61,448 KB
testcase_17 AC 44 ms
60,780 KB
testcase_18 AC 45 ms
60,500 KB
testcase_19 AC 43 ms
59,692 KB
testcase_20 AC 43 ms
60,032 KB
testcase_21 AC 45 ms
60,792 KB
testcase_22 AC 41 ms
59,456 KB
testcase_23 AC 44 ms
60,736 KB
testcase_24 AC 45 ms
61,120 KB
testcase_25 AC 44 ms
60,288 KB
testcase_26 AC 44 ms
60,328 KB
testcase_27 AC 43 ms
59,700 KB
testcase_28 AC 44 ms
59,924 KB
testcase_29 AC 45 ms
60,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
F = [1, 1, 1]
for i in range(3, 3000):
    F.append(F[-1] + F[-2])

from math import gcd    
ans = []
for i in range(3000):
    if F[i] % N == 0:
        ans.append(i)
    
g = ans[0]
for i in range(1, len(ans)):
    g = gcd(g, ans[i])
    
print(g)
0