結果

問題 No.2453 Seat Allocation
ユーザー 👑 p-adicp-adic
提出日時 2023-08-20 07:42:12
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 242 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 105,404 KB
最終ジャッジ日時 2024-06-11 17:51:34
合計ジャッジ時間 6,829 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,056 KB
testcase_01 AC 34 ms
53,504 KB
testcase_02 AC 32 ms
53,376 KB
testcase_03 AC 33 ms
53,880 KB
testcase_04 AC 33 ms
53,484 KB
testcase_05 AC 408 ms
105,148 KB
testcase_06 AC 150 ms
92,356 KB
testcase_07 AC 169 ms
96,264 KB
testcase_08 AC 112 ms
78,516 KB
testcase_09 AC 506 ms
104,608 KB
testcase_10 AC 533 ms
105,404 KB
testcase_11 AC 496 ms
104,644 KB
testcase_12 AC 158 ms
92,232 KB
testcase_13 AC 206 ms
92,428 KB
testcase_14 AC 106 ms
92,900 KB
testcase_15 AC 248 ms
92,252 KB
testcase_16 AC 195 ms
91,216 KB
testcase_17 AC 34 ms
54,432 KB
testcase_18 AC 391 ms
96,620 KB
testcase_19 AC 470 ms
100,496 KB
testcase_20 AC 229 ms
88,304 KB
testcase_21 AC 267 ms
88,040 KB
testcase_22 AC 351 ms
94,492 KB
testcase_23 WA -
testcase_24 AC 34 ms
54,464 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