結果

問題 No.1307 Rotate and Accumulate
ユーザー NyaanNyaanNyaanNyaan
提出日時 2020-12-04 01:17:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 809 ms / 5,000 ms
コード長 175 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 62,464 KB
最終ジャッジ日時 2024-09-14 11:17:55
合計ジャッジ時間 17,721 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
44,048 KB
testcase_01 AC 519 ms
44,312 KB
testcase_02 AC 513 ms
44,312 KB
testcase_03 AC 516 ms
43,796 KB
testcase_04 AC 514 ms
44,056 KB
testcase_05 AC 516 ms
44,320 KB
testcase_06 AC 516 ms
43,792 KB
testcase_07 AC 521 ms
44,064 KB
testcase_08 AC 696 ms
61,184 KB
testcase_09 AC 710 ms
62,464 KB
testcase_10 AC 710 ms
53,136 KB
testcase_11 AC 629 ms
50,684 KB
testcase_12 AC 726 ms
55,948 KB
testcase_13 AC 593 ms
46,356 KB
testcase_14 AC 622 ms
48,560 KB
testcase_15 AC 809 ms
57,924 KB
testcase_16 AC 806 ms
57,932 KB
testcase_17 AC 807 ms
57,952 KB
testcase_18 AC 776 ms
55,388 KB
testcase_19 AC 796 ms
58,444 KB
testcase_20 AC 793 ms
58,064 KB
testcase_21 AC 517 ms
44,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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