結果

問題 No.2749 随伴関手入門
ユーザー NPNP
提出日時 2024-05-10 21:32:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 53,764 KB
最終ジャッジ日時 2024-12-20 04:27:15
合計ジャッジ時間 2,256 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
52,824 KB
testcase_02 AC 38 ms
52,652 KB
testcase_03 AC 43 ms
51,884 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 39 ms
52,824 KB
testcase_07 AC 38 ms
52,832 KB
testcase_08 AC 40 ms
52,596 KB
testcase_09 AC 39 ms
52,400 KB
testcase_10 WA -
testcase_11 AC 39 ms
52,156 KB
testcase_12 AC 40 ms
52,216 KB
testcase_13 AC 39 ms
52,012 KB
testcase_14 AC 39 ms
53,628 KB
testcase_15 AC 39 ms
52,724 KB
testcase_16 AC 39 ms
52,344 KB
testcase_17 AC 39 ms
53,284 KB
testcase_18 AC 39 ms
52,732 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 38 ms
52,376 KB
testcase_22 AC 39 ms
52,768 KB
testcase_23 AC 40 ms
52,648 KB
testcase_24 AC 39 ms
53,216 KB
testcase_25 AC 40 ms
52,792 KB
testcase_26 WA -
testcase_27 AC 37 ms
52,756 KB
testcase_28 WA -
testcase_29 AC 40 ms
52,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def pisano_period(n):
    a, b = 0, 1
    for i in range(n * n):
        a, b = b, (a + b) % n
        if a == 0 and b == 1:
            return i + 1

def find_a_N(N):
    if N >= 3:
        return pisano_period(N) // 2
    else:
        return pisano_period(N)

if __name__ == "__main__":
    import sys
    N = int(input().strip())
    print(find_a_N(N))
0