結果

問題 No.2372 既視感
ユーザー Kanten4205Kanten4205
提出日時 2023-06-21 17:01:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 79,476 KB
最終ジャッジ日時 2024-07-01 16:01:39
合計ジャッジ時間 3,758 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
67,072 KB
testcase_01 AC 65 ms
67,072 KB
testcase_02 AC 65 ms
66,560 KB
testcase_03 AC 69 ms
66,688 KB
testcase_04 AC 65 ms
66,816 KB
testcase_05 AC 65 ms
66,560 KB
testcase_06 AC 65 ms
66,304 KB
testcase_07 AC 66 ms
66,560 KB
testcase_08 AC 111 ms
77,952 KB
testcase_09 AC 86 ms
72,832 KB
testcase_10 AC 113 ms
77,824 KB
testcase_11 AC 121 ms
78,736 KB
testcase_12 AC 70 ms
67,328 KB
testcase_13 AC 119 ms
78,464 KB
testcase_14 AC 75 ms
69,248 KB
testcase_15 AC 100 ms
77,568 KB
testcase_16 AC 88 ms
74,112 KB
testcase_17 AC 75 ms
69,760 KB
testcase_18 AC 71 ms
68,864 KB
testcase_19 AC 68 ms
67,840 KB
testcase_20 AC 68 ms
67,328 KB
testcase_21 AC 68 ms
67,712 KB
testcase_22 AC 74 ms
69,248 KB
testcase_23 AC 120 ms
78,464 KB
testcase_24 AC 129 ms
79,104 KB
testcase_25 AC 118 ms
78,604 KB
testcase_26 AC 118 ms
78,208 KB
testcase_27 AC 121 ms
78,080 KB
testcase_28 AC 162 ms
79,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import queue
N, K, Q = map(int, input().split())
q = []
for _ in range(Q):
    t = int(input())
    if t == 1:
        s = input()
        q.append(s)
        if len(q) > N: q.pop(0)
    else:
        s = set()
        for i in q:
            s.add(i)
        sum = 0;ans = 0
        for i in range(6):
            p = input().split()
            if p[0] in s:
                sum = sum + min(int(p[1]), K)
            else:
                sum = sum + int(p[1])
            if sum <= 60:
                ans = ans + 1
                q.append(p[0])
                if len(q) > N: q.pop(0)
        print(ans)
0