結果

問題 No.322 Geometry Dash
ユーザー rlangevinrlangevin
提出日時 2023-09-07 08:52:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-06-25 03:11:36
合計ジャッジ時間 12,788 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 134 ms
104,832 KB
testcase_05 AC 219 ms
105,088 KB
testcase_06 AC 257 ms
104,704 KB
testcase_07 AC 288 ms
104,576 KB
testcase_08 AC 304 ms
103,936 KB
testcase_09 AC 215 ms
104,576 KB
testcase_10 AC 253 ms
104,576 KB
testcase_11 AC 292 ms
104,576 KB
testcase_12 AC 305 ms
104,320 KB
testcase_13 AC 321 ms
103,936 KB
testcase_14 AC 255 ms
104,704 KB
testcase_15 AC 281 ms
104,192 KB
testcase_16 AC 318 ms
104,576 KB
testcase_17 AC 335 ms
103,808 KB
testcase_18 AC 335 ms
103,680 KB
testcase_19 AC 285 ms
104,448 KB
testcase_20 AC 311 ms
104,448 KB
testcase_21 AC 329 ms
104,192 KB
testcase_22 AC 331 ms
103,936 KB
testcase_23 AC 338 ms
103,296 KB
testcase_24 AC 306 ms
104,064 KB
testcase_25 AC 319 ms
103,936 KB
testcase_26 AC 334 ms
103,680 KB
testcase_27 AC 344 ms
103,296 KB
testcase_28 AC 347 ms
103,936 KB
testcase_29 AC 281 ms
100,224 KB
testcase_30 AC 300 ms
102,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
T = list(map(int, input().split()))
D = list(map(int, input().split()))
temp, ans = [], []
for i in range(N):
    temp.append((-T[i]/D[i], i + 1))
temp.sort()

for _, t in temp:
    ans.append(t)

print(*ans)
0