結果

問題 No.2860 Heal Slimes
ユーザー rimerime
提出日時 2024-08-25 15:26:05
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 487 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 119,084 KB
最終ジャッジ日時 2024-08-25 15:26:14
合計ジャッジ時間 8,063 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 75 ms
75,884 KB
testcase_11 AC 73 ms
75,560 KB
testcase_12 AC 78 ms
75,972 KB
testcase_13 AC 86 ms
76,600 KB
testcase_14 AC 83 ms
75,648 KB
testcase_15 AC 78 ms
75,604 KB
testcase_16 AC 80 ms
75,636 KB
testcase_17 AC 75 ms
75,556 KB
testcase_18 AC 75 ms
75,828 KB
testcase_19 AC 77 ms
76,096 KB
testcase_20 AC 81 ms
108,056 KB
testcase_21 AC 79 ms
108,992 KB
testcase_22 AC 64 ms
90,900 KB
testcase_23 AC 100 ms
112,228 KB
testcase_24 AC 88 ms
104,476 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 105 ms
112,292 KB
testcase_41 AC 108 ms
112,412 KB
testcase_42 AC 102 ms
112,704 KB
testcase_43 AC 103 ms
112,160 KB
testcase_44 AC 106 ms
112,132 KB
testcase_45 AC 103 ms
112,392 KB
testcase_46 AC 105 ms
112,340 KB
testcase_47 AC 106 ms
112,404 KB
testcase_48 AC 102 ms
112,424 KB
testcase_49 AC 103 ms
112,388 KB
testcase_50 AC 103 ms
112,384 KB
testcase_51 AC 113 ms
112,400 KB
testcase_52 AC 111 ms
112,444 KB
testcase_53 AC 107 ms
112,420 KB
testcase_54 AC 109 ms
112,328 KB
testcase_55 AC 103 ms
112,284 KB
testcase_56 AC 104 ms
112,268 KB
testcase_57 AC 103 ms
112,296 KB
testcase_58 AC 102 ms
112,460 KB
testcase_59 AC 102 ms
112,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

ans = []
for _ in range(T):
    C = list(map(int, input().split()))
    H = list(map(int, input().split()))
    
    if C[0] < C[1]:
        ans.append("No")
        continue
    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