結果

問題 No.2453 Seat Allocation
ユーザー ニックネームニックネーム
提出日時 2023-09-01 21:50:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 356 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 46,340 KB
最終ジャッジ日時 2024-06-11 03:34:53
合計ジャッジ時間 8,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,280 KB
testcase_01 AC 32 ms
11,520 KB
testcase_02 AC 34 ms
11,520 KB
testcase_03 AC 31 ms
11,648 KB
testcase_04 AC 30 ms
11,648 KB
testcase_05 AC 1,860 ms
41,180 KB
testcase_06 AC 855 ms
22,548 KB
testcase_07 AC 578 ms
27,700 KB
testcase_08 AC 340 ms
13,568 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
from fractions import Fraction
n,m = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
hq = []
for i in range(n): heappush(hq,(Fraction(-a[i],b[0]),i,0))
while True:
    _,i,j = heappop(hq); print(i+1); m -= 1
    if m==0: break
    heappush(hq,(Fraction(-a[i],b[j+1]),i,j+1))
0