結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,028 KB
testcase_01 AC 50 ms
60,724 KB
testcase_02 AC 53 ms
62,356 KB
testcase_03 AC 50 ms
61,192 KB
testcase_04 AC 45 ms
61,244 KB
testcase_05 AC 47 ms
60,456 KB
testcase_06 AC 46 ms
61,592 KB
testcase_07 AC 48 ms
60,900 KB
testcase_08 AC 47 ms
60,376 KB
testcase_09 AC 49 ms
59,992 KB
testcase_10 AC 46 ms
59,760 KB
testcase_11 AC 46 ms
60,136 KB
testcase_12 AC 48 ms
59,744 KB
testcase_13 AC 46 ms
59,732 KB
testcase_14 AC 47 ms
61,388 KB
testcase_15 AC 45 ms
59,908 KB
testcase_16 AC 45 ms
59,540 KB
testcase_17 AC 47 ms
59,416 KB
testcase_18 AC 46 ms
60,920 KB
testcase_19 AC 50 ms
61,100 KB
testcase_20 AC 47 ms
60,004 KB
testcase_21 AC 46 ms
59,752 KB
testcase_22 AC 54 ms
59,544 KB
testcase_23 AC 47 ms
59,476 KB
testcase_24 AC 48 ms
59,968 KB
testcase_25 AC 46 ms
59,540 KB
testcase_26 AC 48 ms
59,592 KB
testcase_27 AC 48 ms
59,428 KB
testcase_28 AC 48 ms
60,316 KB
testcase_29 AC 48 ms
60,132 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