結果

問題 No.1307 Rotate and Accumulate
ユーザー trineutrontrineutron
提出日時 2020-12-04 00:20:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 821 ms / 5,000 ms
コード長 294 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 59,984 KB
最終ジャッジ日時 2024-09-14 09:48:01
合計ジャッジ時間 17,943 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
44,064 KB
testcase_01 AC 518 ms
44,320 KB
testcase_02 AC 521 ms
44,108 KB
testcase_03 AC 517 ms
44,060 KB
testcase_04 AC 518 ms
44,448 KB
testcase_05 AC 515 ms
44,456 KB
testcase_06 AC 523 ms
43,936 KB
testcase_07 AC 522 ms
43,936 KB
testcase_08 AC 733 ms
58,988 KB
testcase_09 AC 706 ms
59,984 KB
testcase_10 AC 708 ms
52,132 KB
testcase_11 AC 667 ms
49,168 KB
testcase_12 AC 755 ms
53,264 KB
testcase_13 AC 594 ms
45,984 KB
testcase_14 AC 617 ms
47,572 KB
testcase_15 AC 802 ms
55,204 KB
testcase_16 AC 804 ms
55,108 KB
testcase_17 AC 802 ms
55,072 KB
testcase_18 AC 759 ms
51,308 KB
testcase_19 AC 790 ms
54,736 KB
testcase_20 AC 821 ms
54,424 KB
testcase_21 AC 548 ms
43,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n,q=map(int,input().split())
a=np.array(list(map(int,input().split())))
r=map(int,input().split())
b=np.zeros(n)
for i in r:
    if i:
        b[n-i]+=1
    else:
        b[0]+=1
ans=np.round(np.real(np.fft.ifft(np.fft.fft(a)*np.fft.fft(b))))
print(*np.array(ans,dtype=int))
0