結果

問題 No.2372 既視感
ユーザー ohanaohana
提出日時 2023-10-23 09:53:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 77,612 KB
最終ジャッジ日時 2024-09-22 10:01:33
合計ジャッジ時間 3,056 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,992 KB
testcase_01 AC 42 ms
54,692 KB
testcase_02 AC 41 ms
54,736 KB
testcase_03 AC 41 ms
54,188 KB
testcase_04 AC 41 ms
54,552 KB
testcase_05 AC 41 ms
54,532 KB
testcase_06 AC 41 ms
55,436 KB
testcase_07 AC 41 ms
54,776 KB
testcase_08 AC 79 ms
74,324 KB
testcase_09 AC 58 ms
64,280 KB
testcase_10 AC 77 ms
74,264 KB
testcase_11 AC 88 ms
76,812 KB
testcase_12 AC 43 ms
55,116 KB
testcase_13 AC 91 ms
76,764 KB
testcase_14 AC 50 ms
60,956 KB
testcase_15 AC 68 ms
69,200 KB
testcase_16 AC 63 ms
66,836 KB
testcase_17 AC 51 ms
61,228 KB
testcase_18 AC 48 ms
60,180 KB
testcase_19 AC 44 ms
55,104 KB
testcase_20 AC 44 ms
55,688 KB
testcase_21 AC 43 ms
54,196 KB
testcase_22 AC 46 ms
57,056 KB
testcase_23 AC 85 ms
76,480 KB
testcase_24 AC 88 ms
76,612 KB
testcase_25 AC 86 ms
76,404 KB
testcase_26 AC 87 ms
76,476 KB
testcase_27 AC 89 ms
76,948 KB
testcase_28 AC 115 ms
77,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, k, q_ = map(int, input().split())
dq = deque(maxlen=n)

for i in range(q_):
    q = int(input())
    if q == 1:
        dq.append(input())
    else:
        L = [input().split() for i in range(6)]
        tm, t = 60, []
        for a, b in L:
            b = int(b)
            if a in dq:
                b = min(b, k)
            tm -= b
            if tm < 0:
                break
            t.append(a)
        for tt in t:
            dq.append(tt)
        print(len(t))
0