結果

問題 No.1307 Rotate and Accumulate
ユーザー trineutrontrineutron
提出日時 2020-12-04 01:45:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 925 ms / 5,000 ms
コード長 147 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 60,544 KB
最終ジャッジ日時 2024-09-14 12:03:05
合計ジャッジ時間 17,931 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
43,812 KB
testcase_01 AC 527 ms
43,832 KB
testcase_02 AC 529 ms
44,420 KB
testcase_03 AC 526 ms
43,796 KB
testcase_04 AC 522 ms
43,800 KB
testcase_05 AC 529 ms
43,676 KB
testcase_06 AC 527 ms
44,436 KB
testcase_07 AC 535 ms
43,912 KB
testcase_08 AC 804 ms
59,672 KB
testcase_09 AC 820 ms
60,544 KB
testcase_10 AC 756 ms
54,532 KB
testcase_11 AC 732 ms
50,672 KB
testcase_12 AC 769 ms
54,576 KB
testcase_13 AC 578 ms
46,104 KB
testcase_14 AC 634 ms
48,252 KB
testcase_15 AC 923 ms
59,792 KB
testcase_16 AC 914 ms
60,056 KB
testcase_17 AC 918 ms
59,804 KB
testcase_18 AC 900 ms
54,920 KB
testcase_19 AC 914 ms
59,796 KB
testcase_20 AC 925 ms
59,836 KB
testcase_21 AC 527 ms
44,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy.fft import fft as F,ifft as G
I=input
I()
a=I().split()
b=[0]*len(a)
for i in I().split():b[-int(i)]+=1
print(*map(int,G(F(a)*F(b))+.5))
0