結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
43,924 KB
testcase_01 AC 524 ms
43,792 KB
testcase_02 AC 533 ms
44,044 KB
testcase_03 AC 537 ms
43,920 KB
testcase_04 AC 545 ms
43,656 KB
testcase_05 AC 544 ms
43,924 KB
testcase_06 AC 549 ms
43,928 KB
testcase_07 AC 534 ms
43,400 KB
testcase_08 AC 809 ms
59,636 KB
testcase_09 AC 819 ms
59,936 KB
testcase_10 AC 749 ms
52,888 KB
testcase_11 AC 736 ms
50,044 KB
testcase_12 AC 767 ms
54,076 KB
testcase_13 AC 582 ms
46,100 KB
testcase_14 AC 642 ms
46,864 KB
testcase_15 AC 930 ms
58,768 KB
testcase_16 AC 925 ms
59,156 KB
testcase_17 AC 926 ms
59,020 KB
testcase_18 AC 897 ms
53,760 KB
testcase_19 AC 921 ms
58,520 KB
testcase_20 AC 934 ms
59,032 KB
testcase_21 AC 528 ms
43,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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