結果

問題 No.322 Geometry Dash
ユーザー kimiyukikimiyuki
提出日時 2016-02-29 01:22:52
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 239 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 121,980 KB
最終ジャッジ日時 2024-09-24 12:32:30
合計ジャッジ時間 45,497 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
88,852 KB
testcase_01 AC 139 ms
88,684 KB
testcase_02 AC 136 ms
88,292 KB
testcase_03 AC 140 ms
88,708 KB
testcase_04 AC 285 ms
121,980 KB
testcase_05 AC 764 ms
121,596 KB
testcase_06 AC 1,073 ms
121,232 KB
testcase_07 AC 1,408 ms
121,480 KB
testcase_08 AC 1,659 ms
121,360 KB
testcase_09 AC 818 ms
121,792 KB
testcase_10 AC 1,201 ms
121,468 KB
testcase_11 AC 1,413 ms
121,328 KB
testcase_12 AC 1,536 ms
121,648 KB
testcase_13 AC 1,766 ms
121,452 KB
testcase_14 AC 1,057 ms
121,388 KB
testcase_15 AC 1,446 ms
121,252 KB
testcase_16 AC 1,574 ms
121,468 KB
testcase_17 AC 1,736 ms
121,536 KB
testcase_18 AC 1,879 ms
121,236 KB
testcase_19 AC 1,322 ms
121,888 KB
testcase_20 AC 1,787 ms
121,648 KB
testcase_21 AC 1,694 ms
121,592 KB
testcase_22 TLE -
testcase_23 AC 1,855 ms
121,720 KB
testcase_24 AC 1,562 ms
121,588 KB
testcase_25 AC 1,899 ms
121,628 KB
testcase_26 AC 1,834 ms
121,140 KB
testcase_27 TLE -
testcase_28 AC 1,842 ms
121,400 KB
testcase_29 AC 1,625 ms
116,904 KB
testcase_30 AC 1,682 ms
119,092 KB
権限があれば一括ダウンロードができます

ソースコード

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