結果

問題 No.2860 Heal Slimes
ユーザー mkawa2mkawa2
提出日時 2024-08-25 22:08:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,280 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 106,760 KB
最終ジャッジ日時 2024-08-25 22:08:45
合計ジャッジ時間 9,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
76,660 KB
testcase_01 AC 114 ms
76,592 KB
testcase_02 AC 116 ms
77,084 KB
testcase_03 AC 114 ms
76,700 KB
testcase_04 AC 113 ms
76,888 KB
testcase_05 AC 145 ms
77,160 KB
testcase_06 AC 153 ms
77,736 KB
testcase_07 AC 148 ms
77,340 KB
testcase_08 AC 151 ms
76,896 KB
testcase_09 AC 151 ms
77,312 KB
testcase_10 AC 65 ms
75,436 KB
testcase_11 AC 66 ms
74,964 KB
testcase_12 AC 66 ms
75,436 KB
testcase_13 AC 66 ms
75,144 KB
testcase_14 AC 66 ms
75,080 KB
testcase_15 AC 91 ms
75,808 KB
testcase_16 AC 95 ms
75,732 KB
testcase_17 AC 91 ms
75,768 KB
testcase_18 AC 93 ms
76,064 KB
testcase_19 AC 97 ms
75,840 KB
testcase_20 AC 90 ms
100,156 KB
testcase_21 AC 89 ms
100,556 KB
testcase_22 AC 70 ms
85,740 KB
testcase_23 AC 101 ms
100,540 KB
testcase_24 AC 98 ms
103,660 KB
testcase_25 AC 71 ms
90,680 KB
testcase_26 AC 61 ms
80,608 KB
testcase_27 AC 87 ms
101,508 KB
testcase_28 AC 84 ms
102,652 KB
testcase_29 AC 74 ms
93,424 KB
testcase_30 AC 84 ms
103,228 KB
testcase_31 AC 104 ms
106,760 KB
testcase_32 AC 88 ms
104,816 KB
testcase_33 AC 85 ms
103,676 KB
testcase_34 AC 92 ms
100,780 KB
testcase_35 AC 88 ms
104,540 KB
testcase_36 AC 84 ms
103,104 KB
testcase_37 AC 88 ms
104,208 KB
testcase_38 AC 87 ms
104,392 KB
testcase_39 AC 88 ms
104,240 KB
testcase_40 AC 103 ms
100,644 KB
testcase_41 AC 103 ms
100,624 KB
testcase_42 AC 108 ms
100,600 KB
testcase_43 AC 112 ms
100,736 KB
testcase_44 AC 103 ms
100,492 KB
testcase_45 AC 104 ms
100,768 KB
testcase_46 AC 102 ms
100,664 KB
testcase_47 AC 104 ms
101,008 KB
testcase_48 AC 103 ms
101,004 KB
testcase_49 AC 103 ms
100,472 KB
testcase_50 AC 103 ms
101,056 KB
testcase_51 AC 104 ms
100,900 KB
testcase_52 AC 102 ms
100,768 KB
testcase_53 AC 116 ms
100,668 KB
testcase_54 AC 102 ms
100,380 KB
testcase_55 AC 103 ms
100,472 KB
testcase_56 AC 103 ms
100,508 KB
testcase_57 AC 102 ms
100,388 KB
testcase_58 AC 102 ms
100,756 KB
testcase_59 AC 104 ms
100,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(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-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

def ok():
    n, k, x = LI()
    hh = LI()
    r = hh[0]%x
    for h in hh:
        if h%x != r: return False
    dd = [0]*(n+1)
    for i in range(n-1):
        dd[i+1] = hh[i+1]-hh[i]
    if n%k: dd[0] = -sum(dd[i] for i in range(0, n, k))
    for i in range(n):
        if i%k == n%k == 0: continue
        if dd[i] > 0: return False
        if i+k <= n:
            dd[i+k] += dd[i]
            dd[i] = 0
        if dd[i] != 0: return False
    return True

for _ in range(II()): print("Yes" if ok() else "No")
0