結果

問題 No.2372 既視感
ユーザー shogo314shogo314
提出日時 2023-07-07 21:31:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 76,984 KB
最終ジャッジ日時 2024-07-21 17:14:49
合計ジャッジ時間 2,756 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,124 KB
testcase_01 AC 37 ms
53,280 KB
testcase_02 AC 37 ms
52,552 KB
testcase_03 AC 38 ms
52,180 KB
testcase_04 AC 37 ms
53,216 KB
testcase_05 WA -
testcase_06 AC 36 ms
53,028 KB
testcase_07 AC 36 ms
53,132 KB
testcase_08 WA -
testcase_09 AC 53 ms
64,696 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 61 ms
69,276 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 42 ms
54,676 KB
testcase_23 AC 89 ms
76,596 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 83 ms
76,576 KB
testcase_28 AC 94 ms
76,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,Q=map(int,input().split())
A=[]
for _ in range(Q):
    q=int(input())
    if q==1:
        A.append(input())
    else:
        td=[tuple(input().split()) for i in range(6)]
        x=0
        ans=0
        for t,d in td:
            y=10**6
            if t in A[-N:]:
                y=min(K,int(d))
            else:
                y=int(d)
            if x+y<=60:
                ans+=1
            x+=y
        print(ans)
        for t,d in td:
            A.append(t)
0