結果

問題 No.2860 Heal Slimes
ユーザー rimerime
提出日時 2024-08-25 15:20:08
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 430 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 119,168 KB
最終ジャッジ日時 2024-08-25 15:20:16
合計ジャッジ時間 7,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 74 ms
76,252 KB
testcase_11 AC 72 ms
75,736 KB
testcase_12 AC 77 ms
75,944 KB
testcase_13 AC 87 ms
77,004 KB
testcase_14 AC 95 ms
75,884 KB
testcase_15 AC 74 ms
75,688 KB
testcase_16 AC 71 ms
75,704 KB
testcase_17 AC 76 ms
75,628 KB
testcase_18 AC 73 ms
75,632 KB
testcase_19 AC 75 ms
75,952 KB
testcase_20 AC 80 ms
109,032 KB
testcase_21 AC 77 ms
109,216 KB
testcase_22 AC 62 ms
90,868 KB
testcase_23 AC 100 ms
112,080 KB
testcase_24 AC 83 ms
104,268 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 103 ms
112,216 KB
testcase_41 AC 98 ms
112,344 KB
testcase_42 AC 101 ms
112,204 KB
testcase_43 AC 99 ms
112,472 KB
testcase_44 AC 99 ms
112,716 KB
testcase_45 AC 100 ms
112,452 KB
testcase_46 AC 102 ms
112,200 KB
testcase_47 AC 101 ms
112,576 KB
testcase_48 AC 102 ms
112,344 KB
testcase_49 AC 99 ms
112,480 KB
testcase_50 AC 114 ms
112,300 KB
testcase_51 AC 107 ms
112,216 KB
testcase_52 AC 107 ms
112,348 KB
testcase_53 AC 106 ms
112,208 KB
testcase_54 AC 101 ms
112,224 KB
testcase_55 AC 100 ms
112,460 KB
testcase_56 AC 102 ms
112,192 KB
testcase_57 AC 101 ms
112,220 KB
testcase_58 AC 101 ms
112,448 KB
testcase_59 AC 100 ms
112,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

ans = []
for _ in range(T):
    C = list(map(int, input().split()))
    H = list(map(int, input().split()))
    
    M = []
    for i in range(0,len(H)):
        M.append(H[i]%C[2])
    
    
    for i in range(1, len(C)):
        if M[i] == M[0]:
            continue
        else:
            ans.append("No")
            break
    else:
        ans.append("Yes")

for i in range(0,len(ans)):
    print(ans[i])
0