結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
43,952 KB
testcase_01 AC 515 ms
44,068 KB
testcase_02 AC 519 ms
43,580 KB
testcase_03 AC 515 ms
43,836 KB
testcase_04 AC 522 ms
43,520 KB
testcase_05 AC 520 ms
43,828 KB
testcase_06 AC 531 ms
43,576 KB
testcase_07 AC 518 ms
43,968 KB
testcase_08 AC 788 ms
59,580 KB
testcase_09 AC 780 ms
59,300 KB
testcase_10 AC 770 ms
51,100 KB
testcase_11 AC 681 ms
47,436 KB
testcase_12 AC 785 ms
53,956 KB
testcase_13 AC 606 ms
46,144 KB
testcase_14 AC 648 ms
46,996 KB
testcase_15 AC 916 ms
52,900 KB
testcase_16 AC 916 ms
53,284 KB
testcase_17 AC 919 ms
53,520 KB
testcase_18 AC 884 ms
51,996 KB
testcase_19 AC 919 ms
55,828 KB
testcase_20 AC 909 ms
55,984 KB
testcase_21 AC 527 ms
44,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import*
(n,q),a,r=eval('int_(input().split()),'*3)
b=zeros(n)
for i in r:
    b[-i]+=1
print(*map(int,fft.ifft(fft.fft(a)*fft.fft(b))+.5))
0