結果

問題 No.2860 Heal Slimes
ユーザー hiro1729hiro1729
提出日時 2024-08-25 13:59:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 109,044 KB
最終ジャッジ日時 2024-08-25 13:59:48
合計ジャッジ時間 9,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 72 ms
75,592 KB
testcase_11 AC 74 ms
75,184 KB
testcase_12 AC 87 ms
75,868 KB
testcase_13 AC 73 ms
75,476 KB
testcase_14 AC 71 ms
75,400 KB
testcase_15 AC 79 ms
75,900 KB
testcase_16 AC 79 ms
75,956 KB
testcase_17 AC 78 ms
75,840 KB
testcase_18 AC 81 ms
75,648 KB
testcase_19 AC 81 ms
76,048 KB
testcase_20 AC 80 ms
101,896 KB
testcase_21 AC 80 ms
102,228 KB
testcase_22 AC 63 ms
87,520 KB
testcase_23 AC 92 ms
101,816 KB
testcase_24 AC 85 ms
106,136 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 96 ms
101,980 KB
testcase_41 AC 95 ms
101,980 KB
testcase_42 AC 93 ms
101,916 KB
testcase_43 AC 94 ms
102,396 KB
testcase_44 AC 95 ms
102,212 KB
testcase_45 AC 97 ms
101,892 KB
testcase_46 AC 93 ms
102,108 KB
testcase_47 AC 98 ms
102,092 KB
testcase_48 AC 97 ms
101,856 KB
testcase_49 AC 111 ms
102,332 KB
testcase_50 AC 96 ms
102,380 KB
testcase_51 AC 93 ms
102,396 KB
testcase_52 AC 92 ms
102,160 KB
testcase_53 AC 91 ms
102,044 KB
testcase_54 AC 95 ms
102,164 KB
testcase_55 AC 94 ms
102,184 KB
testcase_56 AC 94 ms
102,336 KB
testcase_57 AC 92 ms
102,264 KB
testcase_58 AC 95 ms
101,972 KB
testcase_59 AC 92 ms
102,020 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
	print("Yes")
0