結果

問題 No.322 Geometry Dash
ユーザー tjaketjake
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,400 KB
testcase_01 AC 12 ms
6,400 KB
testcase_02 AC 12 ms
6,400 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 101 ms
23,788 KB
testcase_05 AC 125 ms
23,880 KB
testcase_06 AC 149 ms
24,084 KB
testcase_07 AC 156 ms
24,108 KB
testcase_08 AC 164 ms
24,012 KB
testcase_09 AC 121 ms
23,880 KB
testcase_10 AC 135 ms
24,104 KB
testcase_11 AC 151 ms
24,184 KB
testcase_12 AC 161 ms
24,032 KB
testcase_13 AC 172 ms
24,108 KB
testcase_14 AC 149 ms
24,084 KB
testcase_15 AC 158 ms
24,076 KB
testcase_16 AC 184 ms
24,116 KB
testcase_17 AC 175 ms
24,100 KB
testcase_18 AC 176 ms
24,068 KB
testcase_19 AC 153 ms
23,972 KB
testcase_20 AC 166 ms
24,208 KB
testcase_21 AC 172 ms
24,084 KB
testcase_22 AC 199 ms
24,060 KB
testcase_23 AC 184 ms
23,956 KB
testcase_24 AC 184 ms
24,184 KB
testcase_25 AC 187 ms
23,912 KB
testcase_26 AC 191 ms
23,984 KB
testcase_27 AC 191 ms
24,192 KB
testcase_28 AC 194 ms
24,008 KB
testcase_29 AC 147 ms
20,516 KB
testcase_30 AC 153 ms
21,768 KB
権限があれば一括ダウンロードができます

ソースコード

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