結果
問題 | No.2372 既視感 |
ユーザー | Rute |
提出日時 | 2023-07-07 21:39:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 771 bytes |
コンパイル時間 | 212 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-21 17:24:26 |
合計ジャッジ時間 | 2,114 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,624 KB |
testcase_01 | AC | 31 ms
10,624 KB |
testcase_02 | AC | 32 ms
10,624 KB |
testcase_03 | WA | - |
testcase_04 | AC | 31 ms
10,624 KB |
testcase_05 | WA | - |
testcase_06 | AC | 31 ms
10,880 KB |
testcase_07 | AC | 30 ms
10,880 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 46 ms
10,624 KB |
ソースコード
from collections import deque N, K, Q = map(int,input().split()) q = deque([]) while Q: Q -= 1 n = int(input()) #print(q) if n == 1: a = input() q.appendleft(a) if len(q) > N: q.pop() else: P = [] now = 0 ans = 0 for i in range(6): t, d = input().split() d = int(d) if t in q: if now + min(d, K) <= 60: now += min(d, K) ans += 1 else: if now + d <= 60: now += d ans += 1 P.append(t) print(ans) for i in range(6): q.appendleft(P[i]) if len(q) > N: q.pop()