結果
問題 | No.1307 Rotate and Accumulate |
ユーザー | NyaanNyaan |
提出日時 | 2020-12-04 01:26:37 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 164 bytes |
コンパイル時間 | 293 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 62,536 KB |
最終ジャッジ日時 | 2024-09-14 11:35:31 |
合計ジャッジ時間 | 16,108 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 525 ms
44,072 KB |
testcase_01 | AC | 527 ms
43,800 KB |
testcase_02 | AC | 532 ms
44,452 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 537 ms
43,940 KB |
testcase_07 | AC | 539 ms
44,060 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 747 ms
58,472 KB |
testcase_20 | WA | - |
testcase_21 | AC | 526 ms
44,316 KB |
ソースコード
from numpy import fft as F;I=input;I();a=list(map(int,I().split()));b=[0]*len(a); for i in I().split():b[-int(i)]+=1 print(*(F.ifft(F.fft(a)*F.fft(b))).astype(int))