結果

問題 No.322 Geometry Dash
ユーザー titiatitia
提出日時 2023-07-27 06:40:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,560 KB
最終ジャッジ日時 2024-10-03 21:58:32
合計ジャッジ時間 10,792 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 189 ms
26,904 KB
testcase_05 AC 211 ms
26,768 KB
testcase_06 AC 237 ms
26,924 KB
testcase_07 AC 249 ms
28,312 KB
testcase_08 AC 258 ms
29,112 KB
testcase_09 AC 212 ms
26,764 KB
testcase_10 AC 220 ms
27,544 KB
testcase_11 AC 234 ms
27,840 KB
testcase_12 AC 240 ms
28,448 KB
testcase_13 AC 246 ms
28,384 KB
testcase_14 AC 226 ms
27,532 KB
testcase_15 AC 234 ms
27,668 KB
testcase_16 AC 254 ms
27,508 KB
testcase_17 AC 249 ms
27,608 KB
testcase_18 AC 268 ms
29,392 KB
testcase_19 AC 240 ms
28,092 KB
testcase_20 AC 240 ms
28,264 KB
testcase_21 AC 255 ms
28,404 KB
testcase_22 AC 258 ms
28,332 KB
testcase_23 AC 274 ms
28,784 KB
testcase_24 AC 243 ms
28,752 KB
testcase_25 AC 248 ms
28,684 KB
testcase_26 AC 245 ms
29,100 KB
testcase_27 AC 261 ms
29,832 KB
testcase_28 AC 263 ms
30,332 KB
testcase_29 AC 211 ms
29,276 KB
testcase_30 AC 230 ms
30,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
N=int(input())
T=list(map(int,input().split()))
D=list(map(int,input().split()))

X=[]
for i in range(N):
    X.append((i+1,T[i],D[i]))

X.sort(key=lambda x:x[2]/x[1])

for x,_,_ in X:
    print(x,end=" ")
0