結果

問題 No.2749 随伴関手入門
ユーザー hato336hato336
提出日時 2024-05-10 21:23:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 53,960 KB
最終ジャッジ日時 2024-05-10 21:23:17
合計ジャッジ時間 2,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,404 KB
testcase_01 AC 33 ms
52,724 KB
testcase_02 AC 33 ms
52,416 KB
testcase_03 AC 36 ms
52,504 KB
testcase_04 AC 33 ms
53,372 KB
testcase_05 AC 33 ms
52,188 KB
testcase_06 AC 33 ms
52,708 KB
testcase_07 AC 33 ms
52,068 KB
testcase_08 AC 33 ms
53,448 KB
testcase_09 AC 32 ms
53,364 KB
testcase_10 AC 33 ms
52,208 KB
testcase_11 AC 33 ms
51,744 KB
testcase_12 AC 35 ms
53,068 KB
testcase_13 AC 35 ms
52,544 KB
testcase_14 AC 34 ms
51,956 KB
testcase_15 AC 33 ms
53,756 KB
testcase_16 AC 34 ms
52,968 KB
testcase_17 AC 34 ms
52,076 KB
testcase_18 AC 35 ms
52,572 KB
testcase_19 AC 34 ms
52,248 KB
testcase_20 AC 33 ms
52,304 KB
testcase_21 AC 33 ms
52,232 KB
testcase_22 AC 32 ms
51,864 KB
testcase_23 AC 34 ms
53,960 KB
testcase_24 AC 37 ms
52,428 KB
testcase_25 AC 35 ms
53,468 KB
testcase_26 AC 33 ms
53,004 KB
testcase_27 AC 34 ms
52,752 KB
testcase_28 AC 34 ms
52,728 KB
testcase_29 AC 34 ms
52,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1:
    print(1)
    exit()
x = [0,1,1]
for i in range(3,10000):
    x.append(x[-2]+x[-1])
    x[-1] %= n
    if x[-1] == 0:
        print(i)
        break
0