結果

問題 No.2860 Heal Slimes
ユーザー mkawa2mkawa2
提出日時 2024-08-25 16:28:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,515 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 106,896 KB
最終ジャッジ日時 2024-08-25 16:28:28
合計ジャッジ時間 9,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 110 ms
76,672 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 65 ms
75,680 KB
testcase_11 AC 64 ms
75,348 KB
testcase_12 AC 65 ms
75,612 KB
testcase_13 AC 63 ms
75,228 KB
testcase_14 AC 64 ms
75,748 KB
testcase_15 AC 103 ms
76,460 KB
testcase_16 AC 106 ms
76,684 KB
testcase_17 AC 108 ms
76,696 KB
testcase_18 AC 115 ms
76,988 KB
testcase_19 AC 107 ms
76,892 KB
testcase_20 AC 88 ms
100,440 KB
testcase_21 AC 93 ms
100,540 KB
testcase_22 AC 84 ms
90,720 KB
testcase_23 AC 100 ms
100,940 KB
testcase_24 AC 96 ms
104,148 KB
testcase_25 AC 67 ms
90,052 KB
testcase_26 AC 61 ms
81,868 KB
testcase_27 AC 84 ms
101,712 KB
testcase_28 AC 81 ms
102,248 KB
testcase_29 AC 74 ms
92,760 KB
testcase_30 AC 88 ms
103,288 KB
testcase_31 AC 88 ms
106,896 KB
testcase_32 AC 84 ms
104,896 KB
testcase_33 AC 81 ms
103,624 KB
testcase_34 AC 92 ms
100,548 KB
testcase_35 AC 89 ms
104,516 KB
testcase_36 AC 83 ms
103,212 KB
testcase_37 AC 81 ms
105,220 KB
testcase_38 AC 82 ms
103,300 KB
testcase_39 AC 83 ms
104,580 KB
testcase_40 AC 108 ms
101,184 KB
testcase_41 AC 103 ms
101,052 KB
testcase_42 AC 109 ms
101,152 KB
testcase_43 AC 119 ms
101,420 KB
testcase_44 AC 107 ms
101,044 KB
testcase_45 AC 101 ms
101,040 KB
testcase_46 AC 107 ms
101,044 KB
testcase_47 AC 101 ms
100,988 KB
testcase_48 AC 108 ms
101,060 KB
testcase_49 AC 103 ms
101,044 KB
testcase_50 AC 110 ms
101,672 KB
testcase_51 AC 117 ms
101,280 KB
testcase_52 AC 107 ms
101,308 KB
testcase_53 AC 102 ms
101,300 KB
testcase_54 AC 108 ms
101,308 KB
testcase_55 AC 98 ms
100,908 KB
testcase_56 AC 108 ms
101,152 KB
testcase_57 AC 109 ms
101,520 KB
testcase_58 AC 108 ms
101,304 KB
testcase_59 AC 104 ms
100,920 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()
    dd = [0]*n
    for i in range(n-1):
        dd[i+1] = hh[i+1]-hh[i]
    for d in dd:
        if d%x: return False
    for si in range(k):
        if si==0 or si==n%k:continue
        s=sum(dd[i] for i in range(si,n,k))
        if s:return False
    for si in range(n-1, n-1-k, -1):
        if si%k == n%k:
            if si%k == 0:
                dd[si] += x*10**9
            else:
                s = sum(dd[i] for i in range(si, 0, -k))
                dd[si] -= s
        for i in range(si, k-1, -k):
            if dd[i] < 0: return False
            dd[i-k] += dd[i]
        i = si%k
        if i and dd[i] != 0: return False
    return True

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