結果

問題 No.2372 既視感
ユーザー bug maker / ばぐめいかー@Python学習者bug maker / ばぐめいかー@Python学習者
提出日時 2023-07-07 22:29:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 830 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-21 18:38:00
合計ジャッジ時間 2,275 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 WA -
testcase_06 RE -
testcase_07 AC 32 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 38 ms
10,880 KB
testcase_10 RE -
testcase_11 WA -
testcase_12 WA -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 39 ms
10,880 KB
testcase_16 RE -
testcase_17 WA -
testcase_18 RE -
testcase_19 WA -
testcase_20 WA -
testcase_21 RE -
testcase_22 AC 34 ms
10,752 KB
testcase_23 AC 56 ms
10,880 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 55 ms
10,880 KB
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, Q = [int(i) for i in input().split()]

A = []

for q in range(Q):
    if int(input()) == 1:
        A.append(input())
    
    else:
        lst = []
        for i in range(6):
            lst.append(input().split())
            lst[i][1] = int(lst[i][1])
        x = 0
        t = 0
        M = len(A)
        if N >= M:
            for i in range(6):
                if lst[i][0] in A:
                    lst[i][1] = min(lst[i][1], K)
        else:
            for i in range(6):
                if lst[i][0] in A[M-N:]:
                    lst[i][1] = min(lst[i][1], K)
                    
        while t <= 60:
            t += lst[x][1]
            x += 1
        if x == 6 and t <= 60:
            print(6)
        else:
            print(x-1)
            
        for i in range(6):
            A.append(lst[i][0])
0