結果

問題 No.2372 既視感
ユーザー mo124121mo124121
提出日時 2023-07-07 21:33:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 78,776 KB
最終ジャッジ日時 2024-07-21 17:17:48
合計ジャッジ時間 3,858 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
67,140 KB
testcase_01 AC 66 ms
68,316 KB
testcase_02 AC 66 ms
67,988 KB
testcase_03 AC 70 ms
68,372 KB
testcase_04 AC 64 ms
67,744 KB
testcase_05 AC 65 ms
68,404 KB
testcase_06 AC 65 ms
68,932 KB
testcase_07 AC 66 ms
67,976 KB
testcase_08 AC 105 ms
77,944 KB
testcase_09 AC 78 ms
71,852 KB
testcase_10 AC 108 ms
78,288 KB
testcase_11 AC 114 ms
78,292 KB
testcase_12 AC 67 ms
68,992 KB
testcase_13 AC 112 ms
78,404 KB
testcase_14 AC 71 ms
70,108 KB
testcase_15 AC 84 ms
74,804 KB
testcase_16 AC 82 ms
73,452 KB
testcase_17 AC 73 ms
69,468 KB
testcase_18 AC 70 ms
69,672 KB
testcase_19 AC 68 ms
68,016 KB
testcase_20 AC 70 ms
69,424 KB
testcase_21 AC 68 ms
67,512 KB
testcase_22 AC 71 ms
69,444 KB
testcase_23 AC 121 ms
78,776 KB
testcase_24 AC 106 ms
78,364 KB
testcase_25 AC 116 ms
78,596 KB
testcase_26 AC 112 ms
78,572 KB
testcase_27 AC 119 ms
78,256 KB
testcase_28 AC 127 ms
78,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from typing import Counter


N, K, Q = map(int, input().split())

count = Counter()

q = deque()
for _ in range(Q):
    t = int(input())
    if t == 1:
        s = input()
        count[s] += 1
        q.append(s)
    else:
        TD = []
        for _ in range(6):
            t, d = input().split()
            TD.append((t, int(d)))
        ans = 0
        total = 0
        for t, d in TD:
            if t in count:
                d = min(d, K)
            if total + d <= 60:
                ans += 1
                total += d
                count[t] += 1
                q.append(t)
            else:
                break
        print(ans)

    while len(q) > N:
        u = q.popleft()
        count[u] -= 1
        if count[u] == 0:
            del count[u]
0