結果
問題 | No.322 Geometry Dash |
ユーザー | roiti46 |
提出日時 | 2015-12-15 00:57:21 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 378 bytes |
コンパイル時間 | 123 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 31,224 KB |
最終ジャッジ日時 | 2024-09-15 12:51:34 |
合計ジャッジ時間 | 15,176 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
8,020 KB |
testcase_01 | AC | 23 ms
8,064 KB |
testcase_02 | AC | 24 ms
8,148 KB |
testcase_03 | WA | - |
testcase_04 | AC | 208 ms
29,460 KB |
testcase_05 | AC | 242 ms
29,424 KB |
testcase_06 | AC | 273 ms
29,304 KB |
testcase_07 | AC | 305 ms
29,780 KB |
testcase_08 | AC | 308 ms
30,280 KB |
testcase_09 | AC | 237 ms
29,320 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 280 ms
29,128 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 285 ms
29,864 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 311 ms
30,276 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
# -*- coding: utf-8 -*- import sys,copy,math,heapq,itertools as it,fractions,re,bisect,collections as coll N = int(raw_input()) T = map(int, raw_input().split()) D = map(int, raw_input().split()) s = sum(T) TD = zip(T, D, range(N)) TD = sorted(sorted(TD, key = lambda x:x[1]), key = lambda x:(s - x[0])* (x[1] + 1)) print " ".join(map(str, [TD[i][2] + 1 for i in xrange(N)]))