結果
問題 | No.2372 既視感 |
ユーザー | aoymats1 |
提出日時 | 2023-07-10 00:05:13 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 682 bytes |
コンパイル時間 | 317 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 77,776 KB |
最終ジャッジ日時 | 2024-07-23 21:29:16 |
合計ジャッジ時間 | 3,203 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,832 KB |
testcase_01 | AC | 38 ms
52,444 KB |
testcase_02 | AC | 39 ms
52,696 KB |
testcase_03 | AC | 38 ms
53,316 KB |
testcase_04 | AC | 38 ms
52,736 KB |
testcase_05 | WA | - |
testcase_06 | AC | 38 ms
52,088 KB |
testcase_07 | AC | 39 ms
52,504 KB |
testcase_08 | WA | - |
testcase_09 | AC | 54 ms
63,472 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 63 ms
67,028 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 45 ms
54,380 KB |
testcase_23 | AC | 90 ms
76,412 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 87 ms
76,252 KB |
testcase_28 | AC | 91 ms
76,408 KB |
ソースコード
N, K, Q = map(int, input().split()) A = [] for _ in range(Q): q = int(input()) if q == 1: A.append(input()) elif q == 2: M = len(A) B = A[max(0, M - N):] ans = 0 time = 0 done = [] for i in range(6): t, d = input().split() d = int(d) if t in B: if time + min(d, K) <= 60: ans += 1 done.append(t) time += min(d, K) else: if time + d <= 60: ans += 1 done.append(t) time += d print(ans) A.extend(done)