結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,392 KB
testcase_01 AC 33 ms
11,392 KB
testcase_02 AC 32 ms
11,392 KB
testcase_03 AC 32 ms
11,392 KB
testcase_04 AC 363 ms
30,016 KB
testcase_05 AC 988 ms
29,764 KB
testcase_06 AC 1,335 ms
29,968 KB
testcase_07 AC 1,639 ms
31,444 KB
testcase_08 AC 1,866 ms
32,732 KB
testcase_09 AC 998 ms
30,536 KB
testcase_10 AC 1,334 ms
30,660 KB
testcase_11 AC 1,662 ms
30,764 KB
testcase_12 AC 1,908 ms
31,848 KB
testcase_13 TLE -
testcase_14 AC 1,383 ms
31,676 KB
testcase_15 AC 1,635 ms
31,836 KB
testcase_16 AC 1,917 ms
31,928 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,780 ms
33,268 KB
testcase_20 AC 1,941 ms
33,328 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,918 ms
34,948 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1,973 ms
37,612 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()))
xs = [(fractions.Fraction(ds[i], ts[i]), - ts[i], i+1) for i in range(n)]
xs.sort()
print(*map(lambda p: p[2], xs))
0