結果

問題 No.2860 Heal Slimes
ユーザー 👑 rin204rin204
提出日時 2024-08-25 16:35:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 1,351 bytes
コンパイル時間 655 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 107,204 KB
最終ジャッジ日時 2024-08-25 16:36:07
合計ジャッジ時間 11,192 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
77,472 KB
testcase_01 AC 234 ms
77,756 KB
testcase_02 AC 229 ms
77,312 KB
testcase_03 AC 235 ms
77,708 KB
testcase_04 AC 263 ms
77,324 KB
testcase_05 AC 316 ms
78,696 KB
testcase_06 AC 302 ms
78,040 KB
testcase_07 AC 305 ms
78,532 KB
testcase_08 AC 332 ms
78,220 KB
testcase_09 AC 309 ms
78,896 KB
testcase_10 AC 87 ms
75,828 KB
testcase_11 AC 87 ms
75,900 KB
testcase_12 AC 94 ms
75,804 KB
testcase_13 AC 88 ms
75,388 KB
testcase_14 AC 84 ms
75,804 KB
testcase_15 AC 99 ms
76,256 KB
testcase_16 AC 101 ms
76,144 KB
testcase_17 AC 99 ms
76,324 KB
testcase_18 AC 100 ms
75,864 KB
testcase_19 AC 110 ms
76,724 KB
testcase_20 AC 103 ms
100,544 KB
testcase_21 AC 93 ms
101,128 KB
testcase_22 AC 75 ms
91,360 KB
testcase_23 AC 116 ms
103,888 KB
testcase_24 AC 103 ms
104,388 KB
testcase_25 AC 77 ms
95,244 KB
testcase_26 AC 65 ms
85,028 KB
testcase_27 AC 92 ms
101,692 KB
testcase_28 AC 102 ms
104,192 KB
testcase_29 AC 98 ms
97,632 KB
testcase_30 AC 92 ms
106,252 KB
testcase_31 AC 120 ms
107,204 KB
testcase_32 AC 120 ms
106,956 KB
testcase_33 AC 98 ms
106,112 KB
testcase_34 AC 102 ms
101,764 KB
testcase_35 AC 96 ms
106,944 KB
testcase_36 AC 93 ms
105,880 KB
testcase_37 AC 94 ms
106,808 KB
testcase_38 AC 96 ms
106,368 KB
testcase_39 AC 97 ms
106,540 KB
testcase_40 AC 112 ms
103,720 KB
testcase_41 AC 114 ms
104,084 KB
testcase_42 AC 131 ms
103,824 KB
testcase_43 AC 110 ms
103,956 KB
testcase_44 AC 114 ms
103,592 KB
testcase_45 AC 112 ms
103,452 KB
testcase_46 AC 115 ms
104,012 KB
testcase_47 AC 110 ms
103,880 KB
testcase_48 AC 114 ms
103,584 KB
testcase_49 AC 113 ms
103,464 KB
testcase_50 AC 112 ms
103,984 KB
testcase_51 AC 113 ms
104,096 KB
testcase_52 AC 115 ms
103,728 KB
testcase_53 AC 109 ms
103,700 KB
testcase_54 AC 111 ms
103,976 KB
testcase_55 AC 131 ms
103,720 KB
testcase_56 AC 112 ms
104,200 KB
testcase_57 AC 115 ms
103,588 KB
testcase_58 AC 110 ms
104,104 KB
testcase_59 AC 112 ms
103,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n, k, x = map(int, input().split())
    H = list(map(int, input().split()))
    if len(set(h % x for h in H)) != 1:
        print("No")
        return
    H = [h // x for h in H]
    tot = [0] * k
    ma = max(H)
    for i, h in enumerate(H):
        tot[i % k] += ma - h

    bef = tot[: n % k]
    aft = tot[n % k :]
    if bef and len(set(bef)) != 1:
        print("No")
        return
    if aft and len(set(aft)) != 1:
        print("No")
        return

    if bef and aft:
        b = bef[0]
        a = aft[0]
        d = a - b
        if d < 0:
            print("No")
            return

        goal = ma + d
        R = [goal - h for h in H]
        minus = [0] * n
        tot = 0
        for i in range(n):
            tot -= minus[i]
            r = R[i] - tot
            if r < 0:
                print("No")
                return
            tot += r
            if i + k < n:
                minus[i + k] = r

    else:
        goal = 1 << 30
        R = [goal - h for h in H]
        minus = [0] * n
        tot = 0
        for i in range(n):
            tot -= minus[i]
            r = R[i] - tot
            if r < 0:
                print("No")
                return
            tot += r
            if i + k < n:
                minus[i + k] = r

    print("Yes")


for _ in range(int(input())):
    solve()
0