結果

問題 No.322 Geometry Dash
ユーザー TawaraTawara
提出日時 2015-12-16 22:40:47
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 458 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 1,837 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 98,176 KB
最終ジャッジ日時 2024-11-08 18:21:16
合計ジャッジ時間 15,768 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
75,520 KB
testcase_01 AC 86 ms
75,520 KB
testcase_02 AC 82 ms
75,264 KB
testcase_03 AC 83 ms
75,264 KB
testcase_04 AC 150 ms
96,768 KB
testcase_05 AC 265 ms
96,896 KB
testcase_06 AC 321 ms
96,896 KB
testcase_07 AC 369 ms
97,024 KB
testcase_08 AC 402 ms
97,536 KB
testcase_09 AC 266 ms
97,024 KB
testcase_10 AC 316 ms
97,152 KB
testcase_11 AC 372 ms
97,024 KB
testcase_12 AC 407 ms
97,024 KB
testcase_13 AC 446 ms
97,152 KB
testcase_14 AC 342 ms
97,152 KB
testcase_15 AC 370 ms
97,152 KB
testcase_16 AC 420 ms
97,408 KB
testcase_17 AC 450 ms
97,536 KB
testcase_18 AC 449 ms
97,408 KB
testcase_19 AC 366 ms
97,792 KB
testcase_20 AC 406 ms
97,792 KB
testcase_21 AC 441 ms
97,280 KB
testcase_22 AC 453 ms
97,664 KB
testcase_23 AC 457 ms
98,048 KB
testcase_24 AC 399 ms
97,536 KB
testcase_25 AC 422 ms
97,536 KB
testcase_26 AC 452 ms
98,176 KB
testcase_27 AC 456 ms
98,176 KB
testcase_28 AC 458 ms
97,792 KB
testcase_29 AC 384 ms
93,696 KB
testcase_30 AC 405 ms
95,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
T = map(int,raw_input().split())
D = map(int,raw_input().split())
c = lambda a,b:T[a]*(D[a]+D[b]*2+2)+T[b]*(D[b]+2)
f = lambda l,r:c(r,l)-c(l,r)
print " ".join(map(lambda x:str(x+1),sorted(xrange(N),cmp=f)))
0