結果
問題 | No.2015 Stair Counter |
ユーザー | mkawa2 |
提出日時 | 2022-07-22 21:33:39 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 91 ms / 2,000 ms |
コード長 | 1,091 bytes |
コンパイル時間 | 146 ms |
コンパイル使用メモリ | 82,420 KB |
実行使用メモリ | 105,088 KB |
最終ジャッジ日時 | 2024-07-04 05:33:42 |
合計ジャッジ時間 | 3,142 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,404 KB |
testcase_01 | AC | 84 ms
76,768 KB |
testcase_02 | AC | 91 ms
77,032 KB |
testcase_03 | AC | 86 ms
76,620 KB |
testcase_04 | AC | 83 ms
76,816 KB |
testcase_05 | AC | 83 ms
76,552 KB |
testcase_06 | AC | 86 ms
76,156 KB |
testcase_07 | AC | 86 ms
76,584 KB |
testcase_08 | AC | 88 ms
76,344 KB |
testcase_09 | AC | 54 ms
75,264 KB |
testcase_10 | AC | 55 ms
75,148 KB |
testcase_11 | AC | 54 ms
75,240 KB |
testcase_12 | AC | 53 ms
76,644 KB |
testcase_13 | AC | 56 ms
77,312 KB |
testcase_14 | AC | 55 ms
77,084 KB |
testcase_15 | AC | 62 ms
86,256 KB |
testcase_16 | AC | 74 ms
98,944 KB |
testcase_17 | AC | 62 ms
89,884 KB |
testcase_18 | AC | 67 ms
91,188 KB |
testcase_19 | AC | 77 ms
105,088 KB |
testcase_20 | AC | 70 ms
98,484 KB |
testcase_21 | AC | 85 ms
76,956 KB |
testcase_22 | AC | 86 ms
76,764 KB |
testcase_23 | AC | 86 ms
76,684 KB |
testcase_24 | AC | 87 ms
76,896 KB |
testcase_25 | AC | 84 ms
76,756 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = (1 << 63)-1 # inf = (1 << 31)-1 # md = 10**9+7 md = 998244353 def solve(): n, m = LI() aa = [m]+LI() for i in range(1, n+1): cur = aa[i] if i-2 >= 0: if aa[i-2] > cur: return False cur -= aa[i-2] if cur > aa[i-1]: return False aa[i-1] -= cur return aa[-2]+aa[-1] == m for _ in range(II()): print("Yes" if solve() else "No")