結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
44,188 KB
testcase_01 AC 516 ms
44,052 KB
testcase_02 AC 520 ms
44,188 KB
testcase_03 AC 513 ms
44,032 KB
testcase_04 AC 518 ms
44,052 KB
testcase_05 AC 512 ms
43,888 KB
testcase_06 AC 512 ms
44,184 KB
testcase_07 AC 515 ms
44,176 KB
testcase_08 AC 798 ms
60,052 KB
testcase_09 AC 811 ms
60,820 KB
testcase_10 AC 761 ms
53,760 KB
testcase_11 AC 730 ms
50,564 KB
testcase_12 AC 762 ms
54,560 KB
testcase_13 AC 577 ms
46,140 KB
testcase_14 AC 646 ms
47,500 KB
testcase_15 AC 929 ms
60,316 KB
testcase_16 AC 924 ms
60,116 KB
testcase_17 AC 926 ms
59,948 KB
testcase_18 AC 897 ms
54,544 KB
testcase_19 AC 916 ms
60,188 KB
testcase_20 AC 921 ms
60,188 KB
testcase_21 AC 531 ms
44,176 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