結果

問題 No.1307 Rotate and Accumulate
ユーザー しーあるしーある
提出日時 2020-12-07 05:54:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 965 ms / 5,000 ms
コード長 126 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 66,064 KB
最終ジャッジ日時 2024-09-17 13:36:54
合計ジャッジ時間 17,427 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
44,044 KB
testcase_01 AC 520 ms
43,920 KB
testcase_02 AC 510 ms
44,172 KB
testcase_03 AC 511 ms
44,168 KB
testcase_04 AC 520 ms
44,024 KB
testcase_05 AC 510 ms
44,172 KB
testcase_06 AC 513 ms
44,284 KB
testcase_07 AC 509 ms
44,292 KB
testcase_08 AC 803 ms
63,032 KB
testcase_09 AC 810 ms
66,064 KB
testcase_10 AC 787 ms
55,800 KB
testcase_11 AC 720 ms
51,704 KB
testcase_12 AC 790 ms
62,124 KB
testcase_13 AC 596 ms
46,348 KB
testcase_14 AC 652 ms
51,540 KB
testcase_15 AC 957 ms
64,388 KB
testcase_16 AC 965 ms
64,484 KB
testcase_17 AC 963 ms
64,160 KB
testcase_18 AC 922 ms
54,776 KB
testcase_19 AC 946 ms
64,484 KB
testcase_20 AC 957 ms
63,852 KB
testcase_21 AC 524 ms
44,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy.fft import*
_,a,r=map(str.split,open(0))
a=fft(a)
b=a*0
for i in r:b[-int(i)]+=1
print(*map(int,ifft(a*fft(b))+.5))
0