結果

問題 No.2372 既視感
ユーザー PNJPNJ
提出日時 2023-07-07 21:51:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 390 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-21 17:43:41
合計ジャッジ時間 2,449 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N,K,Q = map(int,input().split())
A = set()
for i in range(Q):
  q = int(input())
  if q == 1:
    s = input()
    A.add(s)
  else:
    ans = 0
    T = 0
    f = 1
    for i in range(6):
      t,dd = map(str,input().split())
      d = int(dd)
      if t in A:
        d = min(d,K)
      if T + d > 60:
        f = 0
      if f:
        T += d
        ans += 1
        A.add(t)
    print(ans)
0