結果

問題 No.322 Geometry Dash
ユーザー kimiyukikimiyuki
提出日時 2016-02-28 22:01:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 239 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 40,216 KB
最終ジャッジ日時 2024-09-24 12:13:50
合計ジャッジ時間 52,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,392 KB
testcase_01 AC 32 ms
11,392 KB
testcase_02 AC 33 ms
11,392 KB
testcase_03 AC 32 ms
11,392 KB
testcase_04 AC 343 ms
29,896 KB
testcase_05 AC 943 ms
29,884 KB
testcase_06 AC 1,288 ms
29,932 KB
testcase_07 AC 1,593 ms
29,792 KB
testcase_08 AC 1,810 ms
31,056 KB
testcase_09 AC 947 ms
30,564 KB
testcase_10 AC 1,262 ms
30,528 KB
testcase_11 AC 1,591 ms
30,624 KB
testcase_12 AC 1,863 ms
30,324 KB
testcase_13 TLE -
testcase_14 AC 1,333 ms
31,680 KB
testcase_15 AC 1,607 ms
31,872 KB
testcase_16 AC 1,858 ms
31,820 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,657 ms
33,408 KB
testcase_20 AC 1,859 ms
32,540 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,895 ms
34,152 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1,900 ms
37,560 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import fractions
n = int(input())
ts = list(map(int,input().split()))
ds = list(map(int,input().split()))
print(*map(lambda p: p[2], sorted(map(lambda i: (fractions.Fraction(ds[i], ts[i]), - ts[i], i+1), range(n)))))
0