結果

問題 No.322 Geometry Dash
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-14 01:42:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 270 bytes
コンパイル時間 1,269 ms
コンパイル使用メモリ 86,668 KB
実行使用メモリ 175,424 KB
最終ジャッジ日時 2023-09-08 10:33:24
合計ジャッジ時間 48,393 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 217 ms
89,008 KB
testcase_01 AC 216 ms
88,812 KB
testcase_02 AC 217 ms
88,768 KB
testcase_03 AC 213 ms
88,828 KB
testcase_04 AC 1,009 ms
169,020 KB
testcase_05 AC 1,530 ms
171,400 KB
testcase_06 AC 1,723 ms
171,436 KB
testcase_07 AC 1,885 ms
172,736 KB
testcase_08 TLE -
testcase_09 AC 1,454 ms
170,332 KB
testcase_10 AC 1,741 ms
172,576 KB
testcase_11 AC 1,902 ms
172,220 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,700 ms
170,764 KB
testcase_15 AC 1,986 ms
173,832 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,842 ms
170,736 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import decimal
N=int(input())
T=list(map(decimal.Decimal,input().split()))
D=list(map(decimal.Decimal,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