結果

問題 No.2372 既視感
ユーザー 👑 rin204rin204
提出日時 2023-07-07 21:26:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 76,776 KB
最終ジャッジ日時 2024-07-21 17:07:32
合計ジャッジ時間 2,776 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,948 KB
testcase_01 AC 39 ms
53,200 KB
testcase_02 AC 38 ms
52,576 KB
testcase_03 AC 39 ms
52,800 KB
testcase_04 AC 38 ms
52,660 KB
testcase_05 AC 38 ms
53,060 KB
testcase_06 AC 38 ms
52,072 KB
testcase_07 AC 38 ms
52,244 KB
testcase_08 AC 73 ms
73,948 KB
testcase_09 AC 54 ms
62,244 KB
testcase_10 AC 73 ms
73,012 KB
testcase_11 AC 81 ms
74,484 KB
testcase_12 AC 40 ms
53,112 KB
testcase_13 AC 84 ms
76,116 KB
testcase_14 AC 43 ms
54,748 KB
testcase_15 AC 61 ms
67,096 KB
testcase_16 AC 56 ms
65,132 KB
testcase_17 AC 46 ms
55,412 KB
testcase_18 AC 43 ms
55,188 KB
testcase_19 AC 41 ms
53,508 KB
testcase_20 AC 43 ms
52,888 KB
testcase_21 AC 41 ms
54,012 KB
testcase_22 AC 44 ms
54,140 KB
testcase_23 AC 88 ms
76,432 KB
testcase_24 AC 97 ms
76,720 KB
testcase_25 AC 87 ms
76,388 KB
testcase_26 AC 85 ms
76,356 KB
testcase_27 AC 90 ms
76,680 KB
testcase_28 AC 90 ms
76,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, Q = map(int, input().split())
lst = []
for _ in range(Q):
    t = int(input())
    if t == 1:
        S = input()
        lst.append(S)
    else:
        ans = 0
        x = 0
        TT = []
        for i in range(6):
            t, d = input().split()
            d = int(d)
            if t in lst[-n:]:
                d = min(d, k)
            ans += d
            if ans <= 60:
                x += 1
                TT.append(t)

        print(x)
        lst += TT
0