結果

問題 No.2372 既視感
ユーザー rlangevinrlangevin
提出日時 2023-07-07 21:42:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 72,060 KB
最終ジャッジ日時 2024-07-21 17:30:01
合計ジャッジ時間 3,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,492 KB
testcase_01 AC 42 ms
54,024 KB
testcase_02 AC 43 ms
54,804 KB
testcase_03 AC 47 ms
54,864 KB
testcase_04 AC 43 ms
54,304 KB
testcase_05 AC 42 ms
54,068 KB
testcase_06 AC 45 ms
53,736 KB
testcase_07 AC 44 ms
53,912 KB
testcase_08 AC 59 ms
65,932 KB
testcase_09 AC 50 ms
62,308 KB
testcase_10 AC 59 ms
67,716 KB
testcase_11 AC 59 ms
65,752 KB
testcase_12 AC 45 ms
60,000 KB
testcase_13 AC 61 ms
66,464 KB
testcase_14 AC 48 ms
59,532 KB
testcase_15 AC 54 ms
65,116 KB
testcase_16 AC 53 ms
61,876 KB
testcase_17 AC 48 ms
60,756 KB
testcase_18 AC 47 ms
59,116 KB
testcase_19 AC 47 ms
60,328 KB
testcase_20 AC 47 ms
59,508 KB
testcase_21 AC 43 ms
54,920 KB
testcase_22 AC 48 ms
60,952 KB
testcase_23 AC 60 ms
65,732 KB
testcase_24 AC 61 ms
66,108 KB
testcase_25 AC 64 ms
67,676 KB
testcase_26 AC 62 ms
66,280 KB
testcase_27 AC 62 ms
66,504 KB
testcase_28 AC 72 ms
72,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, K, Q = map(int, input().split())
S = deque()
for _ in range(Q):
    flag = int(input())
    if flag == 1:
        S.append(input().rstrip())
    else:
        t, d = [0] * 6, [0] * 6
        for i in range(6):
            t[i], d[i] = input().split()
            
        ans = 0
        now = 0
        for i in range(6):
            if t[i] in S:
                now += min(int(d[i]), K)
            else:
                now += int(d[i])
            if now <= 60:
                ans += 1
                S.append(t[i])
            
        print(ans)
            
    while len(S) > N:
        S.popleft()
        
0