結果

問題 No.2372 既視感
ユーザー H20H20
提出日時 2023-07-07 21:33:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-07-21 17:17:36
合計ジャッジ時間 2,959 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 43 ms
54,272 KB
testcase_02 AC 42 ms
53,700 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 AC 45 ms
54,144 KB
testcase_05 AC 42 ms
53,376 KB
testcase_06 AC 41 ms
53,784 KB
testcase_07 AC 41 ms
53,888 KB
testcase_08 AC 100 ms
76,800 KB
testcase_09 AC 56 ms
64,000 KB
testcase_10 AC 89 ms
76,800 KB
testcase_11 AC 98 ms
77,312 KB
testcase_12 AC 43 ms
54,400 KB
testcase_13 AC 89 ms
76,628 KB
testcase_14 AC 51 ms
61,440 KB
testcase_15 AC 84 ms
76,344 KB
testcase_16 AC 63 ms
66,432 KB
testcase_17 AC 51 ms
61,440 KB
testcase_18 AC 46 ms
55,168 KB
testcase_19 AC 43 ms
54,912 KB
testcase_20 AC 45 ms
54,784 KB
testcase_21 AC 43 ms
54,272 KB
testcase_22 AC 46 ms
55,936 KB
testcase_23 AC 88 ms
76,544 KB
testcase_24 AC 90 ms
76,672 KB
testcase_25 AC 90 ms
77,000 KB
testcase_26 AC 98 ms
76,616 KB
testcase_27 AC 103 ms
76,864 KB
testcase_28 AC 102 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,K,Q = map(int, input().split())
Deq = collections.deque()
for _ in range(Q):
    q = int(input())
    if q==1:
        Deq.append(input())
    else:
        TD = [list(input().split()) for _ in range(6)]
        cnt = 0
        time = 0
        for t,d in TD:
            d = int(d)
            ac = False
            for deq in Deq:
                if t==deq:
                    if time+min(d,K)<=60:
                        time+=min(d,K)
                        ac=True

                    break
            else:
                if time+d<=60:
                    time+=d
                    ac=True
            if ac:
                Deq.append(t)
                cnt+=1
            else:
                break
        print(cnt)

    while len(Deq)>N:
        Deq.popleft()
0