結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,620 KB
testcase_01 AC 43 ms
52,632 KB
testcase_02 AC 38 ms
52,616 KB
testcase_03 AC 38 ms
52,032 KB
testcase_04 AC 38 ms
52,212 KB
testcase_05 AC 39 ms
52,208 KB
testcase_06 AC 38 ms
52,472 KB
testcase_07 AC 38 ms
53,284 KB
testcase_08 AC 76 ms
74,692 KB
testcase_09 AC 54 ms
64,028 KB
testcase_10 AC 72 ms
73,516 KB
testcase_11 AC 87 ms
76,668 KB
testcase_12 AC 39 ms
52,772 KB
testcase_13 AC 82 ms
76,588 KB
testcase_14 AC 43 ms
55,628 KB
testcase_15 AC 64 ms
68,520 KB
testcase_16 AC 57 ms
65,716 KB
testcase_17 AC 44 ms
55,980 KB
testcase_18 AC 41 ms
54,788 KB
testcase_19 AC 41 ms
53,220 KB
testcase_20 AC 42 ms
54,692 KB
testcase_21 AC 40 ms
54,028 KB
testcase_22 AC 44 ms
54,408 KB
testcase_23 AC 90 ms
76,044 KB
testcase_24 AC 82 ms
75,976 KB
testcase_25 AC 88 ms
75,856 KB
testcase_26 AC 87 ms
76,528 KB
testcase_27 AC 88 ms
76,168 KB
testcase_28 AC 94 ms
76,696 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[:res]:
            A.append(n)
0