結果
問題 | No.322 Geometry Dash |
ユーザー | rpy3cpp |
提出日時 | 2015-12-15 00:28:34 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 290 ms / 2,000 ms |
コード長 | 236 bytes |
コンパイル時間 | 104 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 32,128 KB |
最終ジャッジ日時 | 2024-11-08 16:39:00 |
合計ジャッジ時間 | 10,816 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 27 |
ソースコード
N = int(input()) Ts = list(map(int, input().split())) Ds = list(map(int, input().split())) tds = [t/d for t, d in zip(Ts, Ds)] tdi = [(td, i) for i, td in enumerate(tds, 1)] tdi.sort(reverse=True) ans = [i for td, i in tdi] print(*ans)