結果

問題 No.322 Geometry Dash
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-14 01:43:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 105,172 KB
最終ジャッジ日時 2024-06-26 03:54:12
合計ジャッジ時間 12,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,204 KB
testcase_01 AC 40 ms
51,948 KB
testcase_02 AC 39 ms
52,456 KB
testcase_03 AC 39 ms
51,812 KB
testcase_04 AC 119 ms
104,832 KB
testcase_05 AC 208 ms
105,172 KB
testcase_06 AC 252 ms
104,816 KB
testcase_07 AC 285 ms
104,532 KB
testcase_08 AC 309 ms
104,244 KB
testcase_09 AC 207 ms
104,844 KB
testcase_10 AC 247 ms
104,604 KB
testcase_11 AC 287 ms
104,900 KB
testcase_12 AC 314 ms
104,324 KB
testcase_13 AC 328 ms
104,476 KB
testcase_14 AC 252 ms
104,844 KB
testcase_15 AC 284 ms
104,360 KB
testcase_16 AC 318 ms
104,356 KB
testcase_17 AC 331 ms
104,256 KB
testcase_18 AC 343 ms
103,676 KB
testcase_19 AC 288 ms
104,492 KB
testcase_20 AC 310 ms
104,344 KB
testcase_21 AC 337 ms
104,016 KB
testcase_22 AC 342 ms
103,684 KB
testcase_23 AC 341 ms
103,640 KB
testcase_24 AC 308 ms
103,920 KB
testcase_25 AC 320 ms
104,240 KB
testcase_26 AC 344 ms
103,904 KB
testcase_27 AC 343 ms
103,252 KB
testcase_28 AC 349 ms
103,448 KB
testcase_29 AC 281 ms
100,340 KB
testcase_30 AC 300 ms
101,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
T=list(map(int,input().split()))
D=list(map(int,input().split()))
ans=list()
for i in range(N):
    ans.append((T[i]/D[i],i+1))
list.sort(ans)
list.reverse(ans)
for i in range(N):
    print(ans[i][1],end=' ')
print()
0