結果

問題 No.322 Geometry Dash
ユーザー kimiyukikimiyuki
提出日時 2016-02-29 01:28:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,707 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 122,380 KB
最終ジャッジ日時 2024-09-24 12:37:09
合計ジャッジ時間 40,113 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
88,628 KB
testcase_01 AC 127 ms
88,624 KB
testcase_02 AC 125 ms
88,632 KB
testcase_03 AC 123 ms
88,364 KB
testcase_04 AC 268 ms
122,012 KB
testcase_05 AC 727 ms
122,204 KB
testcase_06 AC 999 ms
122,016 KB
testcase_07 AC 1,192 ms
121,748 KB
testcase_08 AC 1,335 ms
122,040 KB
testcase_09 AC 719 ms
122,284 KB
testcase_10 AC 1,002 ms
122,144 KB
testcase_11 AC 1,307 ms
122,296 KB
testcase_12 AC 1,537 ms
121,948 KB
testcase_13 AC 1,634 ms
122,108 KB
testcase_14 AC 998 ms
122,316 KB
testcase_15 AC 1,216 ms
121,712 KB
testcase_16 AC 1,474 ms
122,096 KB
testcase_17 AC 1,591 ms
122,060 KB
testcase_18 AC 1,621 ms
121,920 KB
testcase_19 AC 1,213 ms
122,224 KB
testcase_20 AC 1,423 ms
122,000 KB
testcase_21 AC 1,566 ms
121,964 KB
testcase_22 AC 1,578 ms
122,064 KB
testcase_23 AC 1,670 ms
122,380 KB
testcase_24 AC 1,344 ms
122,156 KB
testcase_25 AC 1,492 ms
122,164 KB
testcase_26 AC 1,608 ms
121,892 KB
testcase_27 AC 1,608 ms
122,204 KB
testcase_28 AC 1,707 ms
122,332 KB
testcase_29 AC 1,389 ms
117,008 KB
testcase_30 AC 1,480 ms
119,536 KB
権限があれば一括ダウンロードができます

ソースコード

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