結果
問題 | No.322 Geometry Dash |
ユーザー |
![]() |
提出日時 | 2023-09-07 08:52:01 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 347 ms / 2,000 ms |
コード長 | 225 bytes |
コンパイル時間 | 462 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 105,088 KB |
最終ジャッジ日時 | 2024-06-25 03:11:36 |
合計ジャッジ時間 | 12,788 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 27 |
ソースコード
N = int(input())T = list(map(int, input().split()))D = list(map(int, input().split()))temp, ans = [], []for i in range(N):temp.append((-T[i]/D[i], i + 1))temp.sort()for _, t in temp:ans.append(t)print(*ans)