結果

問題 No.2860 Heal Slimes
ユーザー rimerime
提出日時 2024-08-25 15:28:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 487 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 118,752 KB
最終ジャッジ日時 2024-08-25 15:29:22
合計ジャッジ時間 8,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 78 ms
75,824 KB
testcase_11 AC 76 ms
75,580 KB
testcase_12 AC 76 ms
75,888 KB
testcase_13 AC 78 ms
75,640 KB
testcase_14 AC 77 ms
76,024 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 105 ms
108,188 KB
testcase_21 AC 82 ms
108,720 KB
testcase_22 AC 66 ms
90,380 KB
testcase_23 AC 105 ms
112,084 KB
testcase_24 AC 91 ms
104,488 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 68 ms
91,428 KB
testcase_30 WA -
testcase_31 AC 80 ms
104,940 KB
testcase_32 AC 108 ms
103,552 KB
testcase_33 WA -
testcase_34 AC 91 ms
102,168 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 80 ms
104,044 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 122 ms
112,416 KB
testcase_41 AC 107 ms
112,508 KB
testcase_42 AC 106 ms
112,328 KB
testcase_43 AC 121 ms
112,156 KB
testcase_44 AC 107 ms
112,384 KB
testcase_45 AC 107 ms
112,516 KB
testcase_46 AC 107 ms
112,464 KB
testcase_47 AC 107 ms
112,808 KB
testcase_48 AC 116 ms
112,152 KB
testcase_49 AC 124 ms
112,284 KB
testcase_50 AC 108 ms
112,728 KB
testcase_51 AC 107 ms
112,412 KB
testcase_52 AC 105 ms
112,140 KB
testcase_53 AC 107 ms
112,400 KB
testcase_54 AC 108 ms
112,208 KB
testcase_55 AC 108 ms
112,416 KB
testcase_56 AC 108 ms
112,140 KB
testcase_57 AC 108 ms
112,392 KB
testcase_58 AC 108 ms
112,416 KB
testcase_59 AC 108 ms
112,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

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