結果

問題 No.1307 Rotate and Accumulate
ユーザー 👑 testestesttestestest
提出日時 2020-12-04 01:07:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 796 ms / 5,000 ms
コード長 182 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 62,484 KB
最終ジャッジ日時 2024-09-14 11:03:05
合計ジャッジ時間 16,657 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
44,136 KB
testcase_01 AC 540 ms
43,920 KB
testcase_02 AC 535 ms
44,188 KB
testcase_03 AC 532 ms
43,544 KB
testcase_04 AC 534 ms
43,664 KB
testcase_05 AC 533 ms
44,052 KB
testcase_06 AC 520 ms
43,924 KB
testcase_07 AC 524 ms
43,676 KB
testcase_08 AC 705 ms
61,460 KB
testcase_09 AC 722 ms
62,484 KB
testcase_10 AC 711 ms
51,592 KB
testcase_11 AC 632 ms
50,948 KB
testcase_12 AC 723 ms
54,680 KB
testcase_13 AC 589 ms
46,352 KB
testcase_14 AC 612 ms
48,920 KB
testcase_15 AC 793 ms
57,536 KB
testcase_16 AC 792 ms
57,300 KB
testcase_17 AC 796 ms
57,544 KB
testcase_18 AC 770 ms
54,832 KB
testcase_19 AC 790 ms
58,688 KB
testcase_20 AC 794 ms
58,084 KB
testcase_21 AC 542 ms
44,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as p
input()
a=list(map(int,input().split()))
b=p.zeros_like(a)
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