結果
| 問題 | No.1307 Rotate and Accumulate |
| コンテスト | |
| ユーザー |
testestest
|
| 提出日時 | 2020-12-04 01:50:36 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 144 bytes |
| 記録 | |
| コンパイル時間 | 617 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 53,752 KB |
| 最終ジャッジ日時 | 2026-04-04 12:29:09 |
| 合計ジャッジ時間 | 15,266 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 19 |
ソースコード
from numpy.fft import fft,ifft 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))
testestest