結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,600 KB
testcase_01 AC 36 ms
52,340 KB
testcase_02 AC 32 ms
52,544 KB
testcase_03 AC 32 ms
52,136 KB
testcase_04 AC 33 ms
52,548 KB
testcase_05 AC 34 ms
52,804 KB
testcase_06 AC 34 ms
52,952 KB
testcase_07 AC 33 ms
52,204 KB
testcase_08 AC 34 ms
53,224 KB
testcase_09 AC 33 ms
52,180 KB
testcase_10 AC 33 ms
51,824 KB
testcase_11 AC 34 ms
52,864 KB
testcase_12 AC 34 ms
52,140 KB
testcase_13 AC 32 ms
53,008 KB
testcase_14 AC 34 ms
52,112 KB
testcase_15 AC 38 ms
52,680 KB
testcase_16 AC 32 ms
52,952 KB
testcase_17 AC 33 ms
52,556 KB
testcase_18 AC 32 ms
53,360 KB
testcase_19 AC 33 ms
53,696 KB
testcase_20 AC 32 ms
52,628 KB
testcase_21 AC 32 ms
52,420 KB
testcase_22 AC 31 ms
52,924 KB
testcase_23 AC 33 ms
52,008 KB
testcase_24 AC 35 ms
52,440 KB
testcase_25 AC 33 ms
52,332 KB
testcase_26 AC 32 ms
51,888 KB
testcase_27 AC 32 ms
53,488 KB
testcase_28 AC 33 ms
52,640 KB
testcase_29 AC 34 ms
52,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N == 1:
    print(1)
    exit()

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