結果
| 問題 | No.322 Geometry Dash |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-09-14 01:42:30 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 1,620 ms / 2,000 ms |
| コード長 | 270 bytes |
| 記録 | |
| コンパイル時間 | 132 ms |
| コンパイル使用メモリ | 85,488 KB |
| 実行使用メモリ | 164,216 KB |
| 最終ジャッジ日時 | 2026-03-12 17:23:03 |
| 合計ジャッジ時間 | 38,928 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 27 |
ソースコード
import decimal
N=int(input())
T=list(map(decimal.Decimal,input().split()))
D=list(map(decimal.Decimal,input().split()))
ans=list()
for i in range(N):
ans.append((T[i]/D[i],i+1))
list.sort(ans)
list.reverse(ans)
for i in range(N):
print(ans[i][1],end=' ')
print()