結果

問題 No.303 割れません
ユーザー 👑 rin204rin204
提出日時 2023-07-04 23:46:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,650 ms / 10,000 ms
コード長 703 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 183,808 KB
最終ジャッジ日時 2024-07-18 18:43:30
合計ジャッジ時間 23,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 956 ms
102,016 KB
testcase_04 AC 2,647 ms
182,784 KB
testcase_05 AC 2,623 ms
183,040 KB
testcase_06 AC 2,648 ms
183,808 KB
testcase_07 AC 2,041 ms
159,488 KB
testcase_08 AC 2,108 ms
161,536 KB
testcase_09 AC 2,067 ms
162,176 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 2,650 ms
181,632 KB
testcase_12 AC 2,115 ms
161,920 KB
testcase_13 AC 1,115 ms
112,384 KB
testcase_14 AC 585 ms
91,392 KB
testcase_15 AC 364 ms
80,384 KB
testcase_16 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


sys.set_int_max_str_digits(10 ** 9)


n = int(input())
if n == 2:
    print(3)
    print("INF")
    exit()
print(n)
def matpow(A, B, w):
    l = len(A)
    while w:
        if w & 1:
            C = [0] * l
            for i in range(l):
                for j in range(l):
                    C[i] += A[i][j] * B[j]
            B = C
        C = [[0] * l for _ in range(l)]
        for i in range(l):
            for j in range(l):
                for k in range(l):
                    C[i][j] += A[i][k] * A[k][j]
        A = C
        w >>= 1
    return B

A = [[1, 1], [1, 0]]
B = [1, 0]
ans = matpow(A, B, n - 1)[0]
if n % 2 == 0:
    ans -= matpow(A, B, n // 2 - 1)[0] ** 2
print(ans)
0