結果

問題 No.2372 既視感
ユーザー timitimi
提出日時 2023-07-08 18:34:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-07-22 13:58:26
合計ジャッジ時間 3,311 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 38 ms
52,328 KB
testcase_07 AC 39 ms
51,940 KB
testcase_08 AC 80 ms
73,472 KB
testcase_09 AC 56 ms
63,232 KB
testcase_10 AC 77 ms
72,576 KB
testcase_11 AC 89 ms
76,524 KB
testcase_12 AC 42 ms
52,224 KB
testcase_13 AC 93 ms
76,416 KB
testcase_14 AC 49 ms
59,648 KB
testcase_15 AC 78 ms
73,600 KB
testcase_16 AC 61 ms
65,792 KB
testcase_17 AC 49 ms
59,520 KB
testcase_18 AC 44 ms
53,632 KB
testcase_19 AC 41 ms
52,864 KB
testcase_20 AC 43 ms
52,992 KB
testcase_21 AC 41 ms
52,608 KB
testcase_22 AC 45 ms
54,144 KB
testcase_23 AC 97 ms
76,672 KB
testcase_24 AC 92 ms
76,776 KB
testcase_25 AC 94 ms
76,288 KB
testcase_26 AC 95 ms
76,288 KB
testcase_27 AC 95 ms
76,288 KB
testcase_28 AC 107 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,Q=map(int, input().split())
D=[]
for i in range(Q):
  s=int(input())
  if s==1:
    t=input()
    D.append(t)
  else:
    t=0;c=0
    E=[];F=[]
    for j in range(6):
      x,a=input().split()
      a=int(a)
      F.append((x,a))
    for j in range(6):
      x,a=F[j]
      f=0
      for k in range(min(N,len(D))):
        if D[-1-k]==x:
          f=1
          break 
      if f==0:
        if t+a<=60:
          E.append(x)
          t+=a 
          c+=1
        else:
          break
      else:
        if t+min(a,K)<=60:
          E.append(x)
          t+=min(a,K) 
          c+=1 
        else:
          break
    for e in E:
      D.append(e)
    print(c)
0