結果

問題 No.2372 既視感
ユーザー aoymats1aoymats1
提出日時 2023-07-10 10:35:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 771 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 76,700 KB
最終ジャッジ日時 2024-09-12 23:39:08
合計ジャッジ時間 3,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,464 KB
testcase_01 AC 36 ms
52,392 KB
testcase_02 AC 36 ms
52,964 KB
testcase_03 AC 36 ms
53,940 KB
testcase_04 AC 36 ms
52,628 KB
testcase_05 AC 35 ms
52,752 KB
testcase_06 AC 36 ms
53,300 KB
testcase_07 AC 36 ms
52,960 KB
testcase_08 AC 76 ms
71,568 KB
testcase_09 AC 52 ms
62,320 KB
testcase_10 AC 73 ms
73,188 KB
testcase_11 AC 81 ms
74,744 KB
testcase_12 AC 39 ms
53,628 KB
testcase_13 AC 79 ms
74,080 KB
testcase_14 AC 41 ms
54,064 KB
testcase_15 AC 60 ms
66,456 KB
testcase_16 AC 54 ms
62,784 KB
testcase_17 AC 43 ms
54,904 KB
testcase_18 AC 41 ms
54,484 KB
testcase_19 AC 40 ms
54,560 KB
testcase_20 AC 40 ms
53,624 KB
testcase_21 AC 39 ms
53,668 KB
testcase_22 AC 42 ms
55,456 KB
testcase_23 AC 84 ms
76,388 KB
testcase_24 AC 95 ms
76,700 KB
testcase_25 AC 84 ms
76,548 KB
testcase_26 AC 78 ms
74,808 KB
testcase_27 AC 84 ms
76,356 KB
testcase_28 AC 89 ms
76,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# yukicoder 2372

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

A = []
for _ in range(Q):
    q = int(input())
    if q == 1:
        A.append(input())
    elif q == 2:
        M = len(A)
        B = A[max(0, M - N):]

        ans = 0
        time = 0
        done = []
        for i in range(6):
            t, d = input().split()
            d = int(d)

            if t in B:
                if time + min(d, K) <= 60:
                    ans += 1
                    done.append(t)
                time += min(d, K)
            else:
                if time + d <= 60:
                    ans += 1
                    done.append(t)
                time += d
    
            ## print(f'{A = } {B = } {ans = } {time = } {done = }')

        print(ans)
        A.extend(done)

0