結果

問題 No.322 Geometry Dash
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-14 01:42:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 270 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 163,628 KB
最終ジャッジ日時 2024-06-26 03:54:00
合計ジャッジ時間 50,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
80,012 KB
testcase_01 AC 121 ms
80,032 KB
testcase_02 AC 120 ms
80,188 KB
testcase_03 AC 116 ms
79,836 KB
testcase_04 AC 961 ms
158,892 KB
testcase_05 AC 1,496 ms
160,672 KB
testcase_06 AC 1,736 ms
162,204 KB
testcase_07 AC 1,972 ms
162,596 KB
testcase_08 TLE -
testcase_09 AC 1,411 ms
159,528 KB
testcase_10 AC 1,742 ms
162,108 KB
testcase_11 AC 1,994 ms
162,480 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,688 ms
159,800 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,877 ms
160,156 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