結果

問題 No.322 Geometry Dash
ユーザー tjake
提出日時 2015-12-16 21:16:21
言語 Python2
(2.7.18)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 858 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 24,208 KB
最終ジャッジ日時 2024-11-08 18:14:20
合計ジャッジ時間 8,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
r=lambda:map(float,raw_input().split())
t=r()
d=r()
print" ".join(map(str,sorted(range(1,n+1),key=lambda x:d[x-1]/t[x-1])))
0