結果
| 問題 | No.1307 Rotate and Accumulate |
| コンテスト | |
| ユーザー |
testestest
|
| 提出日時 | 2020-12-04 01:54:24 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 136 bytes |
| 記録 | |
| コンパイル時間 | 605 ms |
| コンパイル使用メモリ | 20,820 KB |
| 実行使用メモリ | 53,516 KB |
| 最終ジャッジ日時 | 2026-04-04 12:30:51 |
| 合計ジャッジ時間 | 18,386 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge5_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 19 |
ソースコード
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))
testestest