結果

問題 No.2453 Seat Allocation
ユーザー lloyzlloyz
提出日時 2023-09-04 01:11:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 367 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 108,724 KB
最終ジャッジ日時 2024-06-22 01:17:52
合計ジャッジ時間 6,578 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,012 KB
testcase_01 AC 30 ms
53,560 KB
testcase_02 AC 29 ms
53,944 KB
testcase_03 AC 29 ms
53,384 KB
testcase_04 AC 32 ms
53,096 KB
testcase_05 AC 320 ms
108,724 KB
testcase_06 AC 134 ms
90,648 KB
testcase_07 AC 129 ms
94,452 KB
testcase_08 AC 93 ms
77,968 KB
testcase_09 AC 460 ms
106,300 KB
testcase_10 AC 445 ms
106,716 KB
testcase_11 AC 431 ms
106,552 KB
testcase_12 AC 140 ms
90,884 KB
testcase_13 AC 181 ms
91,308 KB
testcase_14 AC 98 ms
91,232 KB
testcase_15 AC 222 ms
90,764 KB
testcase_16 AC 170 ms
90,480 KB
testcase_17 AC 34 ms
54,368 KB
testcase_18 AC 329 ms
94,240 KB
testcase_19 AC 377 ms
99,736 KB
testcase_20 AC 180 ms
84,952 KB
testcase_21 AC 225 ms
86,216 KB
testcase_22 AC 299 ms
91,676 KB
testcase_23 WA -
testcase_24 AC 31 ms
53,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

n, m = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

H = []
for i in range(n):
    heappush(H, (-A[i] / B[0], i, 0))
for _ in range(m):
    _, ans, idx = heappop(H)
    print(ans + 1)
    idx += 1
    if idx == m:
        continue
    heappush(H, (-A[ans] / B[idx], ans, idx))
0