結果
問題 | No.2372 既視感 |
ユーザー | lloyz |
提出日時 | 2023-07-07 22:57:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 450 bytes |
コンパイル時間 | 415 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-21 19:15:02 |
合計ジャッジ時間 | 2,603 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,624 KB |
testcase_01 | AC | 32 ms
10,624 KB |
testcase_02 | AC | 31 ms
10,624 KB |
testcase_03 | AC | 32 ms
10,624 KB |
testcase_04 | AC | 33 ms
10,624 KB |
testcase_05 | WA | - |
testcase_06 | AC | 33 ms
10,624 KB |
testcase_07 | AC | 32 ms
10,624 KB |
testcase_08 | WA | - |
testcase_09 | AC | 37 ms
10,624 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 37 ms
10,624 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 33 ms
10,752 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 39 ms
10,752 KB |
testcase_28 | AC | 44 ms
10,624 KB |
ソースコード
n, k, q = map(int, input().split()) seen = set() for _ in range(q): qq = int(input()) if qq == 1: s = input() seen.add(s) elif qq == 2: res = 0 tt = 0 for __ in range(6): s, t = input().split() t = int(t) if s in seen: tt += min(t, k) else: tt += t if tt <= 60: res += 1 print(res)