結果

問題 No.2372 既視感
ユーザー aoymats1aoymats1
提出日時 2023-07-10 10:37:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 632 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 76,724 KB
最終ジャッジ日時 2024-09-12 23:39:11
合計ジャッジ時間 2,720 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,896 KB
testcase_01 AC 36 ms
52,196 KB
testcase_02 AC 37 ms
53,672 KB
testcase_03 AC 35 ms
52,156 KB
testcase_04 AC 37 ms
52,812 KB
testcase_05 AC 36 ms
52,688 KB
testcase_06 AC 36 ms
52,748 KB
testcase_07 AC 36 ms
52,920 KB
testcase_08 AC 72 ms
71,988 KB
testcase_09 AC 51 ms
62,024 KB
testcase_10 AC 71 ms
72,500 KB
testcase_11 AC 78 ms
74,412 KB
testcase_12 AC 37 ms
52,888 KB
testcase_13 AC 78 ms
74,404 KB
testcase_14 AC 42 ms
54,376 KB
testcase_15 AC 60 ms
66,628 KB
testcase_16 AC 55 ms
64,408 KB
testcase_17 AC 42 ms
56,092 KB
testcase_18 AC 40 ms
53,664 KB
testcase_19 AC 39 ms
53,360 KB
testcase_20 AC 38 ms
53,284 KB
testcase_21 AC 38 ms
52,752 KB
testcase_22 AC 44 ms
53,816 KB
testcase_23 AC 84 ms
76,240 KB
testcase_24 AC 92 ms
76,668 KB
testcase_25 AC 84 ms
76,568 KB
testcase_26 AC 78 ms
74,700 KB
testcase_27 AC 84 ms
76,452 KB
testcase_28 AC 87 ms
76,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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
        for i in range(6):
            t, d = input().split()
            d = int(d)

            if t in B:
                if time + min(d, K) <= 60:
                    ans += 1
                    A.append(t)
                time += min(d, K)
            else:
                if time + d <= 60:
                    ans += 1
                    A.append(t)
                time += d

        print(ans)
0