結果
| 問題 |
No.322 Geometry Dash
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-09-14 01:42:30 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 270 bytes |
| コンパイル時間 | 476 ms |
| コンパイル使用メモリ | 82,580 KB |
| 実行使用メモリ | 163,628 KB |
| 最終ジャッジ日時 | 2024-06-26 03:54:00 |
| 合計ジャッジ時間 | 50,257 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 9 TLE * 18 |
ソースコード
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()