結果

問題 No.2372 既視感
ユーザー 21kazu1321kazu13
提出日時 2023-07-07 21:41:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 1,506 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 78,020 KB
最終ジャッジ日時 2024-07-21 17:27:16
合計ジャッジ時間 3,252 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
66,056 KB
testcase_01 AC 55 ms
65,680 KB
testcase_02 AC 56 ms
65,936 KB
testcase_03 AC 59 ms
65,280 KB
testcase_04 AC 54 ms
65,936 KB
testcase_05 AC 55 ms
65,596 KB
testcase_06 AC 55 ms
66,080 KB
testcase_07 AC 54 ms
65,576 KB
testcase_08 AC 70 ms
71,064 KB
testcase_09 AC 60 ms
68,004 KB
testcase_10 AC 69 ms
72,656 KB
testcase_11 AC 65 ms
70,940 KB
testcase_12 AC 57 ms
65,820 KB
testcase_13 AC 70 ms
72,856 KB
testcase_14 AC 55 ms
67,332 KB
testcase_15 AC 61 ms
70,244 KB
testcase_16 AC 62 ms
68,924 KB
testcase_17 AC 57 ms
67,336 KB
testcase_18 AC 57 ms
66,120 KB
testcase_19 AC 57 ms
65,744 KB
testcase_20 AC 56 ms
65,512 KB
testcase_21 AC 56 ms
66,524 KB
testcase_22 AC 54 ms
65,720 KB
testcase_23 AC 74 ms
77,576 KB
testcase_24 AC 72 ms
77,544 KB
testcase_25 AC 75 ms
77,656 KB
testcase_26 AC 75 ms
77,588 KB
testcase_27 AC 75 ms
77,912 KB
testcase_28 AC 87 ms
78,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
from bisect import bisect_left, bisect_right, insort_left, insort_right  # type: ignore
from collections import Counter, defaultdict, deque  # type: ignore
from math import gcd, sqrt, ceil  # type: ignore
from heapq import heapify, heappop, heappush, heappushpop, heapreplace, merge  # type: ignore
from itertools import accumulate, combinations, permutations, product  # type: ignore
from string import ascii_lowercase, ascii_uppercase # type: ignore

def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def I(): return int(sys.stdin.buffer.readline())
def LS(): return sys.stdin.buffer.readline().rstrip().decode("utf-8").split()
def S(): return sys.stdin.buffer.readline().rstrip().decode("utf-8")
def IR(n): return [I() for _ in range(n)]
def LIR(n): return [LI() for _ in range(n)]
def SR(n): return [S() for _ in range(n)]
def LSR(n): return [LS() for _ in range(n)]
def SRL(n): return [list(S()) for _ in range(n)]

N,K,Q = LI()
A = []
for _ in range(Q):
    t = I()
    if t==1:
        s = S()
        A.append(s)
    else:
        ps = LSR(6)
        g = set(A[-N:])
        for i in range(6):
            if ps[i][0] in g:
                ps[i][1] = min(int(ps[i][1]),K)
            else:
                ps[i][1] = int(ps[i][1])
        rem = 60
        cnt = 0
        for t,d in ps:
            if rem-d>=0:
                rem-=d
                A.append(t)
                cnt+=1
            else:
                break
        print(cnt)
0