結果

問題 No.322 Geometry Dash
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-12-15 00:28:30
言語 Python2
(2.7.18)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 855 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 34,384 KB
最終ジャッジ日時 2024-11-08 16:38:12
合計ジャッジ時間 11,484 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,912 KB
testcase_01 AC 12 ms
6,784 KB
testcase_02 AC 12 ms
6,912 KB
testcase_03 AC 12 ms
6,912 KB
testcase_04 AC 227 ms
34,192 KB
testcase_05 AC 255 ms
34,024 KB
testcase_06 AC 278 ms
34,096 KB
testcase_07 AC 291 ms
34,120 KB
testcase_08 AC 288 ms
34,156 KB
testcase_09 AC 252 ms
34,176 KB
testcase_10 AC 273 ms
34,244 KB
testcase_11 AC 283 ms
34,212 KB
testcase_12 AC 289 ms
34,180 KB
testcase_13 AC 302 ms
34,384 KB
testcase_14 AC 274 ms
34,116 KB
testcase_15 AC 287 ms
34,228 KB
testcase_16 AC 296 ms
34,140 KB
testcase_17 AC 312 ms
34,244 KB
testcase_18 AC 305 ms
34,088 KB
testcase_19 AC 283 ms
34,008 KB
testcase_20 AC 291 ms
34,232 KB
testcase_21 AC 316 ms
34,360 KB
testcase_22 AC 312 ms
34,080 KB
testcase_23 AC 315 ms
34,232 KB
testcase_24 AC 299 ms
34,328 KB
testcase_25 AC 303 ms
34,192 KB
testcase_26 AC 304 ms
34,384 KB
testcase_27 AC 308 ms
34,220 KB
testcase_28 AC 314 ms
34,156 KB
testcase_29 AC 239 ms
28,652 KB
testcase_30 AC 258 ms
30,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from collections import namedtuple
n = int(raw_input())
t = map(float, raw_input().split())
d = map(float, raw_input().split())

T = namedtuple('T', 'iD, time, difficulty')
arr = [T(i+1, t[i], d[i]) for i in xrange(n)]
arr.sort(key=lambda x: x.time/x.difficulty, reverse=1)
print ' '.join(map(str, (x.iD for x in arr)))
0