結果

問題 No.322 Geometry Dash
ユーザー rpy3cpprpy3cpp
提出日時 2015-12-15 00:28:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,128 KB
最終ジャッジ日時 2024-11-08 16:39:00
合計ジャッジ時間 10,816 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 172 ms
29,320 KB
testcase_05 AC 203 ms
29,192 KB
testcase_06 AC 230 ms
29,352 KB
testcase_07 AC 245 ms
30,108 KB
testcase_08 AC 268 ms
30,776 KB
testcase_09 AC 204 ms
29,188 KB
testcase_10 AC 218 ms
29,196 KB
testcase_11 AC 250 ms
29,260 KB
testcase_12 AC 259 ms
29,952 KB
testcase_13 AC 273 ms
30,052 KB
testcase_14 AC 236 ms
29,196 KB
testcase_15 AC 258 ms
29,352 KB
testcase_16 AC 262 ms
29,344 KB
testcase_17 AC 271 ms
29,404 KB
testcase_18 AC 290 ms
30,908 KB
testcase_19 AC 248 ms
29,772 KB
testcase_20 AC 261 ms
29,912 KB
testcase_21 AC 273 ms
30,056 KB
testcase_22 AC 272 ms
30,000 KB
testcase_23 AC 288 ms
30,560 KB
testcase_24 AC 272 ms
30,544 KB
testcase_25 AC 284 ms
30,476 KB
testcase_26 AC 281 ms
30,724 KB
testcase_27 AC 288 ms
31,368 KB
testcase_28 AC 285 ms
32,128 KB
testcase_29 AC 218 ms
30,444 KB
testcase_30 AC 232 ms
31,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Ts = list(map(int, input().split()))
Ds = list(map(int, input().split()))

tds = [t/d for t, d in zip(Ts, Ds)]
tdi = [(td, i) for i, td in enumerate(tds, 1)]
tdi.sort(reverse=True)
ans = [i for td, i in tdi]
print(*ans)
0