結果

問題 No.2372 既視感
ユーザー miya145592miya145592
提出日時 2023-07-07 21:47:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 778 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 77,612 KB
最終ジャッジ日時 2024-07-21 17:37:31
合計ジャッジ時間 3,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,348 KB
testcase_01 AC 43 ms
53,876 KB
testcase_02 AC 43 ms
54,148 KB
testcase_03 AC 44 ms
54,736 KB
testcase_04 AC 43 ms
55,312 KB
testcase_05 AC 42 ms
54,120 KB
testcase_06 AC 47 ms
54,852 KB
testcase_07 AC 44 ms
53,740 KB
testcase_08 AC 77 ms
72,588 KB
testcase_09 AC 59 ms
64,644 KB
testcase_10 AC 79 ms
73,128 KB
testcase_11 AC 90 ms
76,468 KB
testcase_12 AC 46 ms
55,392 KB
testcase_13 AC 84 ms
75,116 KB
testcase_14 AC 49 ms
55,632 KB
testcase_15 AC 66 ms
68,596 KB
testcase_16 AC 62 ms
65,072 KB
testcase_17 AC 50 ms
57,484 KB
testcase_18 AC 48 ms
55,892 KB
testcase_19 AC 47 ms
55,772 KB
testcase_20 AC 46 ms
55,320 KB
testcase_21 AC 46 ms
55,528 KB
testcase_22 AC 49 ms
56,304 KB
testcase_23 AC 90 ms
76,668 KB
testcase_24 AC 91 ms
76,972 KB
testcase_25 AC 90 ms
76,764 KB
testcase_26 AC 87 ms
76,792 KB
testcase_27 AC 89 ms
76,504 KB
testcase_28 AC 107 ms
77,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, K, Q = map(int, input().split())
A = []
D = defaultdict(int)
for _ in range(Q):
    q = int(input())
    if q==1:
        s = input()
        A.append(s)
        D[s]+=1
        if len(A)>N:
            D[A[-N-1]]-=1
    else:
        TD = [input().split() for _ in range(6)]
        x = 0
        ans = 0
        for i in range(6):
            t, d = TD[i]
            d = int(d)
            if D[t]>0:
                x+=min(d, K)
            else:
                x+=d
            if x<=60:
                ans+=1
            else:
                break
        
        for i in range(ans):
            t, _ = TD[i]
            A.append(t)
            D[t]+=1
            if len(A)>N:
                D[A[-N-1]]-=1

        print(ans)
0