結果

問題 No.2372 既視感
ユーザー tassei903tassei903
提出日時 2023-07-08 11:27:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 875 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 76,888 KB
最終ジャッジ日時 2024-07-22 07:08:14
合計ジャッジ時間 2,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,588 KB
testcase_01 AC 39 ms
53,200 KB
testcase_02 AC 39 ms
52,272 KB
testcase_03 AC 38 ms
53,088 KB
testcase_04 AC 39 ms
52,492 KB
testcase_05 AC 39 ms
54,156 KB
testcase_06 AC 38 ms
53,608 KB
testcase_07 AC 39 ms
53,012 KB
testcase_08 AC 54 ms
63,712 KB
testcase_09 AC 43 ms
54,796 KB
testcase_10 AC 53 ms
64,512 KB
testcase_11 AC 53 ms
64,764 KB
testcase_12 AC 40 ms
54,096 KB
testcase_13 AC 54 ms
64,120 KB
testcase_14 AC 39 ms
53,388 KB
testcase_15 AC 49 ms
61,856 KB
testcase_16 AC 43 ms
55,512 KB
testcase_17 AC 40 ms
54,536 KB
testcase_18 AC 39 ms
53,512 KB
testcase_19 AC 40 ms
53,420 KB
testcase_20 AC 40 ms
53,020 KB
testcase_21 AC 40 ms
53,740 KB
testcase_22 AC 40 ms
53,148 KB
testcase_23 AC 55 ms
64,632 KB
testcase_24 AC 56 ms
65,616 KB
testcase_25 AC 58 ms
65,524 KB
testcase_26 AC 57 ms
65,188 KB
testcase_27 AC 57 ms
66,240 KB
testcase_28 AC 87 ms
76,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
##

n,k,q = na()
z = []

for _ in range(q):
    q = ni()
    if q == 1:
        s = input()
        z.append(s)
        if len(z) > n:
            z.pop(0)
    else:
        t,d = zip(*[input().split() for i in range(6)])
        d = [int(i) for i in d]
        s = 0
        ans = 0
        for i in range(6):
            if t[i] in z:
                s += min(k, d[i])
            else:
                s += d[i]
            if s <= 60:
                ans = i + 1
        for i in range(ans):
            z.append(t[i])
            if len(z) > n:
                z.pop(0)
        print(ans)
0