結果

問題 No.322 Geometry Dash
ユーザー ichyoichyo
提出日時 2015-12-14 19:25:04
言語 Python2
(2.7.18)
結果
AC  
実行時間 568 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 19,668 KB
最終ジャッジ日時 2024-11-08 10:50:50
合計ジャッジ時間 15,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,144 KB
testcase_01 AC 10 ms
6,272 KB
testcase_02 AC 10 ms
6,272 KB
testcase_03 AC 10 ms
6,144 KB
testcase_04 AC 139 ms
17,788 KB
testcase_05 AC 289 ms
17,780 KB
testcase_06 AC 364 ms
17,876 KB
testcase_07 AC 428 ms
17,704 KB
testcase_08 AC 468 ms
18,060 KB
testcase_09 AC 295 ms
17,908 KB
testcase_10 AC 356 ms
17,916 KB
testcase_11 AC 424 ms
17,632 KB
testcase_12 AC 475 ms
17,584 KB
testcase_13 AC 506 ms
18,280 KB
testcase_14 AC 367 ms
17,872 KB
testcase_15 AC 427 ms
17,876 KB
testcase_16 AC 483 ms
17,880 KB
testcase_17 AC 522 ms
17,736 KB
testcase_18 AC 532 ms
18,092 KB
testcase_19 AC 427 ms
17,684 KB
testcase_20 AC 485 ms
17,688 KB
testcase_21 AC 525 ms
17,712 KB
testcase_22 AC 535 ms
18,184 KB
testcase_23 AC 568 ms
18,672 KB
testcase_24 AC 471 ms
18,304 KB
testcase_25 AC 507 ms
18,168 KB
testcase_26 AC 537 ms
18,324 KB
testcase_27 AC 540 ms
18,664 KB
testcase_28 AC 545 ms
19,000 KB
testcase_29 AC 446 ms
18,688 KB
testcase_30 AC 485 ms
19,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python

n = int(raw_input())
a = map(int, raw_input().split())
b = map(int, raw_input().split())

answer = list(range(n))


def comp(x, y):
    A = a[x] * b[y]
    B = a[y] * b[x]
    if A < B:
        return -1
    elif A > B:
        return +1
    else:
        return 0

answer.sort(cmp=comp, reverse=True)

print(' '.join(str(x + 1) for x in answer))
0