結果

問題 No.2860 Heal Slimes
ユーザー rimerime
提出日時 2024-08-25 15:28:16
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 511 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 118,792 KB
最終ジャッジ日時 2024-08-25 15:28:24
合計ジャッジ時間 7,732 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 67 ms
75,724 KB
testcase_11 AC 68 ms
75,876 KB
testcase_12 AC 69 ms
75,968 KB
testcase_13 AC 71 ms
75,684 KB
testcase_14 AC 70 ms
75,724 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 84 ms
108,120 KB
testcase_21 AC 80 ms
109,556 KB
testcase_22 AC 65 ms
90,204 KB
testcase_23 AC 101 ms
112,208 KB
testcase_24 AC 87 ms
104,568 KB
testcase_25 WA -
testcase_26 AC 54 ms
79,164 KB
testcase_27 AC 80 ms
103,608 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 75 ms
105,612 KB
testcase_32 AC 77 ms
104,268 KB
testcase_33 WA -
testcase_34 AC 91 ms
101,992 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 76 ms
102,784 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 98 ms
112,180 KB
testcase_41 AC 99 ms
112,180 KB
testcase_42 AC 128 ms
112,460 KB
testcase_43 AC 106 ms
112,408 KB
testcase_44 WA -
testcase_45 AC 102 ms
112,180 KB
testcase_46 AC 100 ms
112,152 KB
testcase_47 AC 102 ms
112,280 KB
testcase_48 AC 100 ms
112,176 KB
testcase_49 AC 107 ms
112,144 KB
testcase_50 AC 106 ms
112,264 KB
testcase_51 AC 99 ms
112,276 KB
testcase_52 AC 100 ms
112,276 KB
testcase_53 AC 108 ms
112,404 KB
testcase_54 AC 100 ms
112,484 KB
testcase_55 WA -
testcase_56 AC 101 ms
112,424 KB
testcase_57 AC 103 ms
112,428 KB
testcase_58 AC 100 ms
112,172 KB
testcase_59 WA -
権限があれば一括ダウンロードができます

ソースコード

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] | H[C[0]-2] > H[C[0]-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