結果

問題 No.303 割れません
ユーザー convexineqconvexineq
提出日時 2021-02-23 08:59:49
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 705 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,760 KB
実行使用メモリ 101,436 KB
最終ジャッジ日時 2023-10-22 03:53:49
合計ジャッジ時間 6,988 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,396 KB
testcase_01 AC 39 ms
53,396 KB
testcase_02 AC 38 ms
53,396 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def polymul(f,g):
    lf = len(f)
    lg = len(g)
    res = [0]*(lf+lg-1)
    for i in range(lf):
        for j in range(lg):
            res[i+j] += f[i]*g[j]
    return res

def fps_nth_term(f,g,N):
    assert g[0] != 0
    while N:
        h = g[:]
        for i in range(1,len(g),2):
            h[i] = -h[i]
        f = polymul(f,h)[N%2:N+1:2]
        g = polymul(g,h)[:N+1:2]
        N //= 2
    return f[0]

def rec_nth_term(a,g,N):
    L = len(g)
    assert len(a) == L-1
    f = polymul(a,g)[:L-1]
    return fps_nth_term(f,g,N)

N = int(input())
if N==2:
    print("3\nINF\n")
    exit()
x = rec_nth_term([0,1],[1,-1,-1],N)
y = rec_nth_term([0,1],[1,-1,-1],N//2)
print(N)
print(x - (N+1)%2*y**2)
0