結果

問題 No.2860 Heal Slimes
ユーザー tassei903tassei903
提出日時 2024-08-25 14:52:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 1,284 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 109,124 KB
最終ジャッジ日時 2024-08-25 14:52:58
合計ジャッジ時間 12,374 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
80,444 KB
testcase_01 AC 288 ms
79,228 KB
testcase_02 AC 300 ms
79,940 KB
testcase_03 AC 304 ms
79,248 KB
testcase_04 AC 325 ms
80,760 KB
testcase_05 AC 322 ms
80,324 KB
testcase_06 AC 313 ms
79,788 KB
testcase_07 AC 316 ms
80,716 KB
testcase_08 AC 315 ms
80,108 KB
testcase_09 AC 330 ms
79,804 KB
testcase_10 AC 157 ms
77,156 KB
testcase_11 AC 147 ms
76,984 KB
testcase_12 AC 148 ms
77,056 KB
testcase_13 AC 142 ms
76,924 KB
testcase_14 AC 153 ms
76,972 KB
testcase_15 AC 124 ms
77,560 KB
testcase_16 AC 119 ms
76,724 KB
testcase_17 AC 120 ms
76,788 KB
testcase_18 AC 135 ms
77,760 KB
testcase_19 AC 128 ms
76,676 KB
testcase_20 AC 97 ms
102,504 KB
testcase_21 AC 98 ms
102,232 KB
testcase_22 AC 87 ms
91,576 KB
testcase_23 AC 114 ms
102,068 KB
testcase_24 AC 102 ms
105,704 KB
testcase_25 AC 96 ms
97,876 KB
testcase_26 AC 97 ms
89,652 KB
testcase_27 AC 136 ms
101,936 KB
testcase_28 AC 108 ms
105,788 KB
testcase_29 AC 101 ms
99,108 KB
testcase_30 AC 115 ms
108,296 KB
testcase_31 AC 104 ms
109,124 KB
testcase_32 AC 113 ms
109,080 KB
testcase_33 AC 113 ms
108,104 KB
testcase_34 AC 119 ms
101,936 KB
testcase_35 AC 125 ms
109,036 KB
testcase_36 AC 119 ms
108,104 KB
testcase_37 AC 113 ms
109,040 KB
testcase_38 AC 112 ms
108,580 KB
testcase_39 AC 135 ms
108,836 KB
testcase_40 AC 118 ms
102,116 KB
testcase_41 AC 114 ms
102,304 KB
testcase_42 AC 114 ms
102,196 KB
testcase_43 AC 117 ms
102,292 KB
testcase_44 AC 118 ms
101,964 KB
testcase_45 AC 113 ms
102,016 KB
testcase_46 AC 113 ms
102,368 KB
testcase_47 AC 114 ms
102,112 KB
testcase_48 AC 124 ms
102,312 KB
testcase_49 AC 113 ms
101,832 KB
testcase_50 AC 117 ms
102,012 KB
testcase_51 AC 117 ms
102,328 KB
testcase_52 AC 114 ms
102,256 KB
testcase_53 AC 114 ms
102,144 KB
testcase_54 AC 118 ms
102,088 KB
testcase_55 AC 113 ms
102,164 KB
testcase_56 AC 118 ms
101,956 KB
testcase_57 AC 116 ms
102,220 KB
testcase_58 AC 122 ms
101,988 KB
testcase_59 AC 119 ms
102,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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")
#######################################################################

def check(f):
    if len(f) == 0:
        return True
    B = 0
    for i in range(f[0] is None, len(f) - (f[-1] is None)):
        if f[i] < 0:
            B += -f[i]
        else:
            B -= f[i]
        if B < 0:
            if not (f[0] is None):
                return False
            else:
                B = 0
    if B > 0 and not (f[-1] is None):
        return False
    return True


for _ in range(ni()):
    n, k, x = na()
    h = na()
    b = [h[i+1]-h[i] for i in range(n-1)]
    ans = 1
    for i in range(k):
        f = []
        for j in range(i, n + 1, k):
            if j == 0:
                f.append(None)
            elif j == n:
                f.append(None)
            else:
                if b[j-1] % x != 0:
                    ans = 0
                f.append(b[j-1] // x)
        ans &= check(f)
        #print(f, check(f))
    if ans:
        print("Yes")
    else:
        print("No")
0