結果
問題 | No.2372 既視感 |
ユーザー | tassei903 |
提出日時 | 2023-07-08 11:25:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 873 bytes |
コンパイル時間 | 311 ms |
コンパイル使用メモリ | 82,296 KB |
実行使用メモリ | 76,888 KB |
最終ジャッジ日時 | 2024-07-22 07:06:33 |
合計ジャッジ時間 | 2,544 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,740 KB |
testcase_01 | AC | 37 ms
52,248 KB |
testcase_02 | AC | 37 ms
54,220 KB |
testcase_03 | AC | 37 ms
52,712 KB |
testcase_04 | AC | 38 ms
53,292 KB |
testcase_05 | WA | - |
testcase_06 | AC | 37 ms
52,600 KB |
testcase_07 | AC | 38 ms
52,264 KB |
testcase_08 | WA | - |
testcase_09 | AC | 42 ms
55,236 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 50 ms
62,508 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 41 ms
53,796 KB |
testcase_23 | AC | 59 ms
67,280 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 62 ms
68,936 KB |
testcase_28 | AC | 87 ms
76,888 KB |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] ni = lambda :int(input()) na = lambda :list(map(int,input().split())) yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES") no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO") ## n,k,q = na() z = [] for _ in range(q): q = ni() if q == 1: s = input() z.append(s) if len(z) > n: z.pop(0) else: t,d = zip(*[input().split() for i in range(6)]) d = [int(i) for i in d] s = 0 ans = 0 for i in range(6): if t[i] in z: s += min(k, d[i]) else: s += d[i] if s <= 60: ans = i + 1 for i in range(6): z.append(t[i]) if len(z) > n: z.pop(0) print(ans)