結果
問題 | No.322 Geometry Dash |
ユーザー | はむ吉🐹 |
提出日時 | 2016-07-14 18:19:30 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 956 ms / 2,000 ms |
コード長 | 490 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 41,480 KB |
最終ジャッジ日時 | 2024-11-08 19:08:10 |
合計ジャッジ時間 | 23,895 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,624 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 35 ms
10,624 KB |
testcase_03 | AC | 33 ms
10,752 KB |
testcase_04 | AC | 268 ms
29,924 KB |
testcase_05 | AC | 452 ms
30,120 KB |
testcase_06 | AC | 575 ms
32,740 KB |
testcase_07 | AC | 677 ms
34,060 KB |
testcase_08 | AC | 775 ms
35,044 KB |
testcase_09 | AC | 452 ms
30,248 KB |
testcase_10 | AC | 554 ms
30,696 KB |
testcase_11 | AC | 648 ms
33,184 KB |
testcase_12 | AC | 762 ms
34,116 KB |
testcase_13 | AC | 836 ms
35,332 KB |
testcase_14 | AC | 565 ms
32,900 KB |
testcase_15 | AC | 649 ms
33,000 KB |
testcase_16 | AC | 762 ms
35,044 KB |
testcase_17 | AC | 847 ms
36,784 KB |
testcase_18 | AC | 897 ms
38,040 KB |
testcase_19 | AC | 666 ms
34,284 KB |
testcase_20 | AC | 768 ms
34,396 KB |
testcase_21 | AC | 846 ms
36,616 KB |
testcase_22 | AC | 894 ms
37,988 KB |
testcase_23 | AC | 937 ms
39,172 KB |
testcase_24 | AC | 750 ms
35,428 KB |
testcase_25 | AC | 796 ms
35,476 KB |
testcase_26 | AC | 880 ms
37,820 KB |
testcase_27 | AC | 926 ms
39,324 KB |
testcase_28 | AC | 956 ms
40,328 KB |
testcase_29 | AC | 782 ms
38,928 KB |
testcase_30 | AC | 872 ms
41,480 KB |
ソースコード
#!/usr/bin/env python3 import collections import functools Spot = collections.namedtuple("Spot", "i t d") def spot_cmp(spot1, spot2): return spot2.t * spot1.d - spot1.t * spot2.d def main(): n = int(input()) ts = map(int, input().split()) ds = map(int, input().split()) spots = [Spot(*args) for args in zip(range(1, n + 1), ts, ds)] spots.sort(key=functools.cmp_to_key(spot_cmp)) print(*(spot.i for spot in spots)) if __name__ == '__main__': main()