結果

問題 No.2372 既視感
ユーザー ryohei22ryohei22
提出日時 2023-07-07 21:52:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 77,392 KB
最終ジャッジ日時 2024-07-21 17:45:42
合計ジャッジ時間 2,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,984 KB
testcase_01 AC 39 ms
54,624 KB
testcase_02 AC 37 ms
55,432 KB
testcase_03 AC 39 ms
54,944 KB
testcase_04 AC 38 ms
54,404 KB
testcase_05 AC 37 ms
53,760 KB
testcase_06 AC 38 ms
54,640 KB
testcase_07 AC 37 ms
54,784 KB
testcase_08 AC 69 ms
74,668 KB
testcase_09 AC 53 ms
63,748 KB
testcase_10 AC 72 ms
73,424 KB
testcase_11 AC 85 ms
76,584 KB
testcase_12 AC 41 ms
54,852 KB
testcase_13 AC 81 ms
76,956 KB
testcase_14 AC 43 ms
57,488 KB
testcase_15 AC 59 ms
67,860 KB
testcase_16 AC 55 ms
65,480 KB
testcase_17 AC 44 ms
55,768 KB
testcase_18 AC 43 ms
55,832 KB
testcase_19 AC 41 ms
55,056 KB
testcase_20 AC 42 ms
55,696 KB
testcase_21 AC 39 ms
54,780 KB
testcase_22 AC 43 ms
56,064 KB
testcase_23 AC 88 ms
77,392 KB
testcase_24 AC 70 ms
73,980 KB
testcase_25 AC 82 ms
76,924 KB
testcase_26 AC 79 ms
76,612 KB
testcase_27 AC 81 ms
76,524 KB
testcase_28 AC 88 ms
77,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def add_(a):
    global memory, mcnt, hist, i_hist
    memory[a] += 1
    mcnt += 1
    hist.append(a)
    if N < mcnt:
        memory[hist[i_hist]] -= 1
        mcnt -= 1
        i_hist += 1


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

memory = defaultdict(int)
mcnt = 0
hist = []
i_hist = 0
for _ in range(Q):
    a = int(input())
    if a == 1:
        s = input()
        add_(s)
    else:
        time = 0
        solve = []
        for _ in range(6):
            t, d = input().split()
            d = int(d)
            if t in memory and 0 < memory[t]:
                time += min(d, K)
            else:
                time += d
            if time <= 60:
                solve.append(t)
        print(len(solve))
        for t in solve:
            add_(t)
0