結果

問題 No.322 Geometry Dash
ユーザー pluto77pluto77
提出日時 2018-02-23 17:40:10
言語 Python2
(2.7.18)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 909 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 30,520 KB
最終ジャッジ日時 2024-10-08 15:13:05
合計ジャッジ時間 13,187 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,144 KB
testcase_01 AC 11 ms
6,016 KB
testcase_02 AC 11 ms
6,016 KB
testcase_03 AC 11 ms
6,144 KB
testcase_04 AC 216 ms
28,024 KB
testcase_05 AC 256 ms
28,444 KB
testcase_06 AC 284 ms
28,628 KB
testcase_07 AC 302 ms
28,968 KB
testcase_08 AC 320 ms
29,456 KB
testcase_09 AC 261 ms
28,536 KB
testcase_10 AC 280 ms
28,796 KB
testcase_11 AC 309 ms
28,764 KB
testcase_12 AC 320 ms
29,104 KB
testcase_13 AC 316 ms
29,740 KB
testcase_14 AC 286 ms
28,368 KB
testcase_15 AC 305 ms
28,628 KB
testcase_16 AC 309 ms
28,560 KB
testcase_17 AC 330 ms
29,128 KB
testcase_18 AC 335 ms
29,588 KB
testcase_19 AC 308 ms
29,072 KB
testcase_20 AC 312 ms
29,208 KB
testcase_21 AC 331 ms
29,236 KB
testcase_22 AC 341 ms
29,704 KB
testcase_23 AC 342 ms
30,196 KB
testcase_24 AC 317 ms
29,564 KB
testcase_25 AC 314 ms
29,560 KB
testcase_26 AC 338 ms
29,592 KB
testcase_27 AC 339 ms
30,184 KB
testcase_28 AC 335 ms
30,520 KB
testcase_29 AC 257 ms
27,904 KB
testcase_30 AC 284 ms
29,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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
0