結果

問題 No.2372 既視感
ユーザー lloyzlloyz
提出日時 2023-07-07 23:02:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-07-21 19:20:32
合計ジャッジ時間 3,229 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,016 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 44 ms
53,760 KB
testcase_04 AC 46 ms
53,376 KB
testcase_05 AC 45 ms
53,504 KB
testcase_06 AC 49 ms
53,376 KB
testcase_07 AC 42 ms
53,376 KB
testcase_08 AC 81 ms
72,704 KB
testcase_09 AC 60 ms
63,232 KB
testcase_10 AC 82 ms
72,704 KB
testcase_11 AC 97 ms
76,672 KB
testcase_12 AC 48 ms
54,304 KB
testcase_13 AC 95 ms
76,800 KB
testcase_14 AC 50 ms
55,552 KB
testcase_15 AC 69 ms
67,456 KB
testcase_16 AC 65 ms
64,384 KB
testcase_17 AC 52 ms
55,936 KB
testcase_18 AC 53 ms
54,784 KB
testcase_19 AC 50 ms
54,528 KB
testcase_20 AC 47 ms
54,528 KB
testcase_21 AC 47 ms
54,272 KB
testcase_22 AC 52 ms
55,296 KB
testcase_23 AC 101 ms
77,440 KB
testcase_24 AC 79 ms
72,064 KB
testcase_25 AC 96 ms
76,964 KB
testcase_26 AC 93 ms
76,512 KB
testcase_27 AC 99 ms
76,672 KB
testcase_28 AC 102 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque, defaultdict

n, k, q = map(int, input().split())
seen_que = deque()
seen_set = set()
seen_dict = defaultdict(int)
for _ in range(q):
    qq = int(input())
    if qq == 1:
        s = input()
        if len(seen_que) == n:
            rs = seen_que.popleft()
            seen_dict[rs] -= 1
            if seen_dict[rs] == 0:
                seen_set.remove(rs)
        seen_que.append(s)
        seen_dict[s] += 1
        seen_set.add(s)
    elif qq == 2:
        res = 0
        tt = 0
        L = []
        for __ in range(6):
            s, t = input().split()
            t = int(t)
            if s in seen_set:
                tt += min(t, k)
            else:
                tt += t
            if tt <= 60:
                res += 1
                L.append(s)
        for s in L:
            if len(seen_que) == n:
                rs = seen_que.popleft()
                seen_dict[rs] -= 1
                if seen_dict[rs] == 0:
                    seen_set.remove(rs)
            seen_que.append(s)
            seen_dict[s] += 1
            seen_set.add(s)
        print(res)
0