結果

問題 No.2453 Seat Allocation
ユーザー 👑 p-adicp-adic
提出日時 2023-08-20 07:47:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 242 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 36,476 KB
最終ジャッジ日時 2024-06-11 17:51:49
合計ジャッジ時間 7,065 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 432 ms
36,448 KB
testcase_06 AC 215 ms
21,676 KB
testcase_07 AC 160 ms
28,640 KB
testcase_08 AC 63 ms
13,056 KB
testcase_09 AC 570 ms
36,476 KB
testcase_10 AC 624 ms
35,204 KB
testcase_11 AC 626 ms
35,204 KB
testcase_12 AC 211 ms
21,888 KB
testcase_13 AC 243 ms
21,676 KB
testcase_14 AC 194 ms
21,880 KB
testcase_15 AC 263 ms
21,716 KB
testcase_16 AC 229 ms
21,420 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 367 ms
23,268 KB
testcase_19 AC 465 ms
29,752 KB
testcase_20 AC 172 ms
19,188 KB
testcase_21 AC 220 ms
18,480 KB
testcase_22 AC 323 ms
21,896 KB
testcase_23 WA -
testcase_24 AC 26 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
J,R=lambda:map(int,input().split()),range
N,M=J()
A=list(J())
B=list(J())+[1]
C=[[-A[i]/B[0],i,0]for i in R(N)]
heapq.heapify(C)
for j in R(M):
	c=heapq.heappop(C)
	print(1+c[1]),heapq.heappush(C,[-A[c[1]]/B[c[2]+1],c[1],c[2]+1])
0