結果

問題 No.322 Geometry Dash
ユーザー TawaraTawara
提出日時 2015-12-16 22:39:25
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,267 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 19,096 KB
最終ジャッジ日時 2024-09-16 06:00:16
合計ジャッジ時間 31,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,144 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 12 ms
6,272 KB
testcase_03 AC 12 ms
6,272 KB
testcase_04 AC 186 ms
16,560 KB
testcase_05 AC 579 ms
16,556 KB
testcase_06 AC 769 ms
16,396 KB
testcase_07 AC 947 ms
16,852 KB
testcase_08 AC 1,055 ms
17,352 KB
testcase_09 AC 570 ms
16,300 KB
testcase_10 AC 754 ms
16,564 KB
testcase_11 AC 944 ms
16,528 KB
testcase_12 AC 1,099 ms
16,752 KB
testcase_13 AC 1,180 ms
17,384 KB
testcase_14 AC 775 ms
16,520 KB
testcase_15 AC 935 ms
16,576 KB
testcase_16 AC 1,104 ms
16,520 KB
testcase_17 AC 1,198 ms
16,896 KB
testcase_18 AC 1,232 ms
17,240 KB
testcase_19 AC 940 ms
16,976 KB
testcase_20 AC 1,067 ms
16,992 KB
testcase_21 AC 1,180 ms
17,140 KB
testcase_22 AC 1,242 ms
17,488 KB
testcase_23 AC 1,267 ms
17,968 KB
testcase_24 AC 1,054 ms
17,468 KB
testcase_25 AC 1,126 ms
17,464 KB
testcase_26 AC 1,210 ms
17,496 KB
testcase_27 AC 1,246 ms
17,964 KB
testcase_28 AC 1,262 ms
18,168 KB
testcase_29 AC 1,011 ms
17,992 KB
testcase_30 AC 1,120 ms
19,096 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