結果

問題 No.1307 Rotate and Accumulate
ユーザー trineutrontrineutron
提出日時 2020-12-04 00:41:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 807 ms / 5,000 ms
コード長 214 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 59,732 KB
最終ジャッジ日時 2024-09-14 10:19:47
合計ジャッジ時間 16,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
44,056 KB
testcase_01 AC 519 ms
43,920 KB
testcase_02 AC 515 ms
43,680 KB
testcase_03 AC 518 ms
43,796 KB
testcase_04 AC 514 ms
44,060 KB
testcase_05 AC 526 ms
43,808 KB
testcase_06 AC 516 ms
44,056 KB
testcase_07 AC 521 ms
44,308 KB
testcase_08 AC 694 ms
58,924 KB
testcase_09 AC 707 ms
59,732 KB
testcase_10 AC 718 ms
50,328 KB
testcase_11 AC 630 ms
48,952 KB
testcase_12 AC 734 ms
54,712 KB
testcase_13 AC 598 ms
46,096 KB
testcase_14 AC 623 ms
46,924 KB
testcase_15 AC 807 ms
53,952 KB
testcase_16 AC 805 ms
54,064 KB
testcase_17 AC 806 ms
53,952 KB
testcase_18 AC 766 ms
50,988 KB
testcase_19 AC 795 ms
53,788 KB
testcase_20 AC 792 ms
54,048 KB
testcase_21 AC 517 ms
44,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as p
n,q=map(int,input().split())
a=p.array(list(map(int,input().split())))
b=p.zeros(n)
for i in map(int,input().split()):b[-i%n]+=1
print(*p.array(p.fft.ifft(p.fft.fft(a)*p.fft.fft(b))+.5,dtype=int))
0