結果
| 問題 | No.322 Geometry Dash |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-02-23 17:40:10 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 178 ms / 2,000 ms |
| + 209µs | |
| コード長 | 223 bytes |
| 記録 | |
| コンパイル時間 | 561 ms |
| コンパイル使用メモリ | 80,640 KB |
| 実行使用メモリ | 100,992 KB |
| 最終ジャッジ日時 | 2026-07-18 17:17:05 |
| 合計ジャッジ時間 | 8,183 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 27 |
ソースコード
#yuki322 n=int(raw_input()) t=map(int,raw_input().split()) d=map(int,raw_input().split()) a=[[i,1.0*t[i]/d[i]] for i in xrange(n)] res=sorted(a,key=lambda x:x[1],reverse=True) for i in xrange(n): print res[i][0]+1, print