結果

問題 No.2860 Heal Slimes
ユーザー mkawa2mkawa2
提出日時 2024-08-25 16:23:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,384 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 105,708 KB
最終ジャッジ日時 2024-08-25 16:24:03
合計ジャッジ時間 8,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 115 ms
76,760 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 64 ms
75,492 KB
testcase_11 AC 72 ms
75,560 KB
testcase_12 AC 65 ms
75,216 KB
testcase_13 AC 65 ms
75,400 KB
testcase_14 AC 64 ms
75,596 KB
testcase_15 AC 83 ms
76,216 KB
testcase_16 AC 87 ms
76,080 KB
testcase_17 AC 85 ms
76,260 KB
testcase_18 AC 81 ms
76,424 KB
testcase_19 AC 88 ms
76,072 KB
testcase_20 AC 80 ms
98,700 KB
testcase_21 AC 78 ms
100,584 KB
testcase_22 AC 66 ms
88,380 KB
testcase_23 AC 90 ms
101,056 KB
testcase_24 AC 92 ms
103,820 KB
testcase_25 AC 68 ms
91,164 KB
testcase_26 AC 57 ms
80,876 KB
testcase_27 AC 82 ms
101,760 KB
testcase_28 AC 75 ms
102,192 KB
testcase_29 AC 68 ms
92,544 KB
testcase_30 AC 78 ms
103,568 KB
testcase_31 AC 83 ms
105,708 KB
testcase_32 AC 82 ms
105,224 KB
testcase_33 AC 85 ms
104,556 KB
testcase_34 AC 86 ms
100,412 KB
testcase_35 AC 82 ms
104,440 KB
testcase_36 AC 77 ms
103,720 KB
testcase_37 AC 79 ms
104,708 KB
testcase_38 AC 87 ms
103,736 KB
testcase_39 AC 79 ms
104,792 KB
testcase_40 AC 91 ms
101,012 KB
testcase_41 AC 95 ms
101,172 KB
testcase_42 AC 93 ms
100,984 KB
testcase_43 AC 96 ms
100,888 KB
testcase_44 AC 90 ms
100,880 KB
testcase_45 AC 92 ms
101,148 KB
testcase_46 AC 98 ms
101,152 KB
testcase_47 AC 89 ms
100,908 KB
testcase_48 AC 88 ms
100,904 KB
testcase_49 AC 99 ms
100,912 KB
testcase_50 AC 96 ms
101,052 KB
testcase_51 AC 97 ms
101,152 KB
testcase_52 AC 93 ms
101,172 KB
testcase_53 AC 92 ms
100,928 KB
testcase_54 AC 96 ms
101,032 KB
testcase_55 AC 95 ms
101,012 KB
testcase_56 AC 97 ms
100,784 KB
testcase_57 AC 93 ms
100,892 KB
testcase_58 AC 99 ms
100,904 KB
testcase_59 AC 94 ms
100,764 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(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