結果

問題 No.2372 既視感
ユーザー yabityabit
提出日時 2023-07-11 09:40:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 571 bytes
コンパイル時間 727 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 76,784 KB
最終ジャッジ日時 2024-09-13 00:03:52
合計ジャッジ時間 3,163 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,584 KB
testcase_01 AC 38 ms
52,940 KB
testcase_02 AC 38 ms
51,752 KB
testcase_03 AC 38 ms
52,004 KB
testcase_04 AC 37 ms
53,112 KB
testcase_05 WA -
testcase_06 AC 37 ms
53,016 KB
testcase_07 AC 38 ms
52,948 KB
testcase_08 WA -
testcase_09 AC 54 ms
62,712 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 63 ms
68,724 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 44 ms
55,032 KB
testcase_23 AC 94 ms
76,264 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 88 ms
76,276 KB
testcase_28 AC 94 ms
76,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,Q = map(int, input().split())
A = []
for t in range(Q):
    qu = int(input())
    if qu == 1:
        A.append(input())
        # print(A[max(0,len(A)-N):])
    else:
        B = []
        for i in range(6):
            B.append(list(input().split()))
        time = 0
        res = 0
        for n, t in B:
            t = int(t)
            if n in A[max(0,len(A)-N):]:
                time += min(t, K)
            else:
                time += t
            if time <= 60:
                res += 1
        print(res)
        for n,t in B:
            A.append(n)
0