結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,060 KB
testcase_01 AC 45 ms
58,516 KB
testcase_02 AC 44 ms
58,520 KB
testcase_03 AC 44 ms
58,924 KB
testcase_04 AC 45 ms
59,084 KB
testcase_05 AC 44 ms
59,872 KB
testcase_06 AC 44 ms
59,640 KB
testcase_07 AC 46 ms
59,300 KB
testcase_08 AC 44 ms
58,528 KB
testcase_09 AC 44 ms
59,720 KB
testcase_10 AC 45 ms
59,044 KB
testcase_11 AC 44 ms
59,448 KB
testcase_12 AC 44 ms
59,828 KB
testcase_13 AC 45 ms
59,548 KB
testcase_14 AC 45 ms
59,752 KB
testcase_15 AC 45 ms
59,172 KB
testcase_16 AC 44 ms
59,144 KB
testcase_17 AC 44 ms
58,892 KB
testcase_18 AC 45 ms
59,024 KB
testcase_19 AC 44 ms
58,516 KB
testcase_20 AC 45 ms
59,212 KB
testcase_21 AC 45 ms
59,360 KB
testcase_22 AC 44 ms
58,580 KB
testcase_23 AC 44 ms
60,116 KB
testcase_24 AC 44 ms
59,336 KB
testcase_25 AC 45 ms
59,760 KB
testcase_26 AC 45 ms
59,244 KB
testcase_27 AC 43 ms
58,720 KB
testcase_28 AC 44 ms
58,460 KB
testcase_29 AC 45 ms
59,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

F = [1, 1]
for _ in range(1000):
    F.append(sum(F[-2:]))

for i in range(len(F)):
    if F[i] % N == 0:
        print(i+1)
        break
0