結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
44,056 KB
testcase_01 AC 518 ms
43,788 KB
testcase_02 AC 513 ms
43,932 KB
testcase_03 AC 515 ms
44,316 KB
testcase_04 AC 537 ms
43,804 KB
testcase_05 AC 517 ms
44,060 KB
testcase_06 AC 518 ms
43,912 KB
testcase_07 AC 520 ms
44,196 KB
testcase_08 AC 766 ms
61,724 KB
testcase_09 AC 783 ms
62,664 KB
testcase_10 AC 739 ms
53,020 KB
testcase_11 AC 705 ms
51,056 KB
testcase_12 AC 762 ms
54,824 KB
testcase_13 AC 589 ms
46,492 KB
testcase_14 AC 637 ms
47,172 KB
testcase_15 AC 882 ms
58,324 KB
testcase_16 AC 878 ms
58,212 KB
testcase_17 AC 878 ms
58,200 KB
testcase_18 AC 971 ms
56,256 KB
testcase_19 AC 885 ms
58,564 KB
testcase_20 AC 879 ms
58,224 KB
testcase_21 AC 516 ms
43,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy.fft import fft as F,ifft as G
I=input
I()
a=[*map(int,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