結果

問題 No.1307 Rotate and Accumulate
ユーザー 👑 testestesttestestest
提出日時 2020-12-04 01:14:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 756 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 61,084 KB
最終ジャッジ日時 2024-09-14 11:10:26
合計ジャッジ時間 15,949 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 512 ms
43,576 KB
testcase_01 AC 518 ms
43,708 KB
testcase_02 AC 510 ms
43,444 KB
testcase_03 AC 527 ms
43,840 KB
testcase_04 AC 534 ms
43,832 KB
testcase_05 AC 545 ms
43,452 KB
testcase_06 AC 526 ms
43,564 KB
testcase_07 AC 525 ms
43,584 KB
testcase_08 AC 698 ms
60,296 KB
testcase_09 AC 704 ms
61,084 KB
testcase_10 AC 682 ms
50,996 KB
testcase_11 AC 638 ms
49,704 KB
testcase_12 AC 679 ms
54,276 KB
testcase_13 AC 561 ms
44,964 KB
testcase_14 AC 613 ms
46,088 KB
testcase_15 AC 756 ms
56,932 KB
testcase_16 AC 755 ms
57,316 KB
testcase_17 AC 753 ms
57,312 KB
testcase_18 AC 728 ms
55,348 KB
testcase_19 AC 748 ms
57,172 KB
testcase_20 AC 744 ms
57,592 KB
testcase_21 AC 508 ms
43,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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