結果

問題 No.287 場合の数
ユーザー rkato5680rkato5680
提出日時 2020-09-25 18:29:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 529 ms / 5,000 ms
コード長 335 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,320 KB
最終ジャッジ日時 2024-06-28 05:55:27
合計ジャッジ時間 15,780 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
44,184 KB
testcase_01 AC 519 ms
44,200 KB
testcase_02 AC 520 ms
44,316 KB
testcase_03 AC 516 ms
44,320 KB
testcase_04 AC 519 ms
43,928 KB
testcase_05 AC 524 ms
44,184 KB
testcase_06 AC 524 ms
43,804 KB
testcase_07 AC 520 ms
43,800 KB
testcase_08 AC 521 ms
44,184 KB
testcase_09 AC 522 ms
44,320 KB
testcase_10 AC 520 ms
44,128 KB
testcase_11 AC 519 ms
43,668 KB
testcase_12 AC 522 ms
44,192 KB
testcase_13 AC 520 ms
43,928 KB
testcase_14 AC 516 ms
44,320 KB
testcase_15 AC 523 ms
44,308 KB
testcase_16 AC 529 ms
43,968 KB
testcase_17 AC 523 ms
43,928 KB
testcase_18 AC 524 ms
43,800 KB
testcase_19 AC 529 ms
43,928 KB
testcase_20 AC 519 ms
43,928 KB
testcase_21 AC 527 ms
43,932 KB
testcase_22 AC 521 ms
44,072 KB
testcase_23 AC 523 ms
44,056 KB
testcase_24 AC 521 ms
44,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from numpy.fft import rfft,irfft

def convolve(a1,a2):
    n = 2**(len(a1)+len(a2)+1).bit_length()
    b1,b2=np.zeros(n),np.zeros(n)
    b1[:len(a1)], b2[:len(a2)]= a1,a2
    return (irfft(rfft(b1)*rfft(b2))+0.5).astype(int)
  
n=int(input())

f = np.ones(n+1)
for i in range(3):
  f = convolve(f,f)
  
print(f[6*n])
0