結果
問題 |
No.303 割れません
|
ユーザー |
![]() |
提出日時 | 2021-02-23 09:01:28 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 713 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,476 KB |
実行使用メモリ | 101,860 KB |
最終ジャッジ日時 | 2024-09-22 05:17:49 |
合計ジャッジ時間 | 6,807 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 2 RE * 12 |
ソースコード
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) print("INF") 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)