結果

問題 No.2860 Heal Slimes
ユーザー hiro1729hiro1729
提出日時 2024-08-25 14:00:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 328 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 108,716 KB
最終ジャッジ日時 2024-08-25 14:01:05
合計ジャッジ時間 9,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 71 ms
75,328 KB
testcase_11 AC 80 ms
75,356 KB
testcase_12 AC 75 ms
75,060 KB
testcase_13 AC 76 ms
76,008 KB
testcase_14 AC 73 ms
75,636 KB
testcase_15 AC 81 ms
75,688 KB
testcase_16 AC 87 ms
76,172 KB
testcase_17 AC 85 ms
75,968 KB
testcase_18 AC 84 ms
75,688 KB
testcase_19 AC 89 ms
76,180 KB
testcase_20 AC 76 ms
101,736 KB
testcase_21 AC 79 ms
102,092 KB
testcase_22 AC 65 ms
88,056 KB
testcase_23 AC 97 ms
101,984 KB
testcase_24 AC 93 ms
105,772 KB
testcase_25 AC 69 ms
93,608 KB
testcase_26 AC 60 ms
84,240 KB
testcase_27 AC 85 ms
101,344 KB
testcase_28 AC 87 ms
105,704 KB
testcase_29 AC 72 ms
95,672 KB
testcase_30 AC 86 ms
107,884 KB
testcase_31 AC 87 ms
108,716 KB
testcase_32 AC 87 ms
108,608 KB
testcase_33 AC 91 ms
108,084 KB
testcase_34 AC 94 ms
101,772 KB
testcase_35 AC 87 ms
108,572 KB
testcase_36 AC 90 ms
107,652 KB
testcase_37 AC 86 ms
108,452 KB
testcase_38 AC 101 ms
108,080 KB
testcase_39 AC 86 ms
108,320 KB
testcase_40 AC 95 ms
102,108 KB
testcase_41 AC 96 ms
102,156 KB
testcase_42 AC 96 ms
102,104 KB
testcase_43 AC 95 ms
101,916 KB
testcase_44 AC 94 ms
102,152 KB
testcase_45 AC 96 ms
102,244 KB
testcase_46 AC 95 ms
102,052 KB
testcase_47 AC 95 ms
102,080 KB
testcase_48 AC 115 ms
102,228 KB
testcase_49 AC 98 ms
101,840 KB
testcase_50 AC 96 ms
102,228 KB
testcase_51 AC 98 ms
102,072 KB
testcase_52 AC 99 ms
102,176 KB
testcase_53 AC 97 ms
102,100 KB
testcase_54 AC 98 ms
102,288 KB
testcase_55 AC 94 ms
102,340 KB
testcase_56 AC 97 ms
102,452 KB
testcase_57 AC 95 ms
102,092 KB
testcase_58 AC 95 ms
101,904 KB
testcase_59 AC 105 ms
102,284 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
	if any(H[i] < H[i + 1] for i in range(K - 1)) or any(H[i] > H[i + 1] for i in range(N - K, N - 1)):
		print("No")
	else:
		print("Yes")
0