結果

問題 No.2749 随伴関手入門
ユーザー splash9494splash9494
提出日時 2024-05-12 12:59:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 53,836 KB
最終ジャッジ日時 2024-05-12 12:59:29
合計ジャッジ時間 2,728 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
53,316 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 35 ms
52,796 KB
testcase_04 AC 33 ms
53,836 KB
testcase_05 AC 33 ms
53,440 KB
testcase_06 AC 33 ms
53,008 KB
testcase_07 AC 32 ms
52,992 KB
testcase_08 AC 32 ms
53,504 KB
testcase_09 AC 32 ms
52,944 KB
testcase_10 AC 33 ms
53,348 KB
testcase_11 AC 32 ms
52,760 KB
testcase_12 AC 33 ms
51,756 KB
testcase_13 AC 34 ms
52,576 KB
testcase_14 AC 34 ms
51,880 KB
testcase_15 AC 33 ms
52,900 KB
testcase_16 AC 33 ms
52,116 KB
testcase_17 AC 33 ms
52,032 KB
testcase_18 AC 38 ms
51,952 KB
testcase_19 AC 34 ms
52,616 KB
testcase_20 AC 35 ms
52,552 KB
testcase_21 AC 34 ms
52,208 KB
testcase_22 AC 35 ms
53,744 KB
testcase_23 AC 34 ms
52,612 KB
testcase_24 AC 33 ms
53,804 KB
testcase_25 AC 34 ms
52,072 KB
testcase_26 AC 33 ms
52,516 KB
testcase_27 AC 33 ms
52,736 KB
testcase_28 AC 33 ms
52,088 KB
testcase_29 AC 32 ms
52,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

fibos = [a:= 1, b:=1]
divedN = [a % N, b % N]
while True:
    c = a + b
    fibos.append(c)
    divedN.append(p := c % N)
    if p == 0:
        print(len(divedN))
        break
    a, b = b, c
0