結果

問題 No.2860 Heal Slimes
ユーザー hiro1729hiro1729
提出日時 2024-08-25 14:16:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 522 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 108,988 KB
最終ジャッジ日時 2024-08-25 14:16:33
合計ジャッジ時間 11,519 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 261 ms
77,340 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 72 ms
76,048 KB
testcase_11 AC 75 ms
75,680 KB
testcase_12 AC 80 ms
76,048 KB
testcase_13 AC 80 ms
75,864 KB
testcase_14 AC 75 ms
75,648 KB
testcase_15 AC 108 ms
76,648 KB
testcase_16 AC 114 ms
76,652 KB
testcase_17 AC 111 ms
76,368 KB
testcase_18 AC 110 ms
75,964 KB
testcase_19 AC 120 ms
77,196 KB
testcase_20 AC 85 ms
101,852 KB
testcase_21 AC 100 ms
102,084 KB
testcase_22 AC 83 ms
95,500 KB
testcase_23 AC 110 ms
108,404 KB
testcase_24 AC 102 ms
106,064 KB
testcase_25 AC 77 ms
100,392 KB
testcase_26 AC 69 ms
89,732 KB
testcase_27 AC 105 ms
102,404 KB
testcase_28 AC 95 ms
105,848 KB
testcase_29 AC 86 ms
104,552 KB
testcase_30 AC 95 ms
108,200 KB
testcase_31 AC 99 ms
108,812 KB
testcase_32 AC 97 ms
108,880 KB
testcase_33 AC 97 ms
107,912 KB
testcase_34 AC 105 ms
108,400 KB
testcase_35 AC 102 ms
108,664 KB
testcase_36 AC 93 ms
107,580 KB
testcase_37 AC 96 ms
108,312 KB
testcase_38 AC 100 ms
108,068 KB
testcase_39 AC 101 ms
108,300 KB
testcase_40 AC 112 ms
108,732 KB
testcase_41 AC 108 ms
108,604 KB
testcase_42 AC 109 ms
108,552 KB
testcase_43 AC 110 ms
108,836 KB
testcase_44 AC 109 ms
108,600 KB
testcase_45 AC 115 ms
108,864 KB
testcase_46 AC 117 ms
108,692 KB
testcase_47 AC 110 ms
108,724 KB
testcase_48 AC 111 ms
108,856 KB
testcase_49 AC 105 ms
108,740 KB
testcase_50 AC 109 ms
108,692 KB
testcase_51 AC 112 ms
108,600 KB
testcase_52 AC 110 ms
108,724 KB
testcase_53 AC 109 ms
108,476 KB
testcase_54 AC 113 ms
108,808 KB
testcase_55 AC 113 ms
108,864 KB
testcase_56 AC 112 ms
108,988 KB
testcase_57 AC 109 ms
108,736 KB
testcase_58 AC 110 ms
108,584 KB
testcase_59 AC 112 ms
108,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
	N, K, X = map(int, input().split())
	H = list(map(int, input().split()))
	m = min(H)
	H = [i - m for i in H]
	if any(i % X for i in H):
		print("No")
		continue
	H = [i // X for i in H]
	D = [0] + [H[i] - H[i + 1] for i in range(N - 1)] + [0]
	C = [0] * K
	for i in range(1, N):
		C[i % K] += D[i]
	if all(C[i] == 0 or i == N % K for i in range(1, K)) and all(H[i] >= H[i + 1] for i in range(K - 1)) and all(H[i] <= H[i + 1] for i in range(N - K, N - 1)):
		print("Yes")
	else:
		print("No")
0