結果

問題 No.1307 Rotate and Accumulate
ユーザー trineutrontrineutron
提出日時 2020-12-04 01:03:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 811 ms / 5,000 ms
コード長 195 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 62,856 KB
最終ジャッジ日時 2024-09-14 10:58:23
合計ジャッジ時間 17,098 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 516 ms
44,176 KB
testcase_01 AC 517 ms
43,680 KB
testcase_02 AC 518 ms
43,808 KB
testcase_03 AC 518 ms
44,304 KB
testcase_04 AC 514 ms
44,056 KB
testcase_05 AC 522 ms
43,796 KB
testcase_06 AC 520 ms
43,684 KB
testcase_07 AC 517 ms
44,180 KB
testcase_08 AC 693 ms
61,464 KB
testcase_09 AC 702 ms
62,856 KB
testcase_10 AC 701 ms
52,624 KB
testcase_11 AC 627 ms
50,692 KB
testcase_12 AC 715 ms
55,692 KB
testcase_13 AC 582 ms
45,844 KB
testcase_14 AC 612 ms
48,436 KB
testcase_15 AC 785 ms
58,312 KB
testcase_16 AC 783 ms
58,704 KB
testcase_17 AC 811 ms
58,192 KB
testcase_18 AC 783 ms
55,252 KB
testcase_19 AC 782 ms
58,080 KB
testcase_20 AC 783 ms
58,192 KB
testcase_21 AC 517 ms
43,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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