結果

問題 No.2860 Heal Slimes
ユーザー rimerime
提出日時 2024-08-25 15:42:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 604 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 119,016 KB
最終ジャッジ日時 2024-08-25 15:43:09
合計ジャッジ時間 7,935 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 72 ms
75,700 KB
testcase_11 AC 70 ms
75,708 KB
testcase_12 AC 74 ms
76,120 KB
testcase_13 AC 72 ms
75,708 KB
testcase_14 AC 71 ms
75,636 KB
testcase_15 AC 74 ms
76,032 KB
testcase_16 AC 92 ms
75,788 KB
testcase_17 AC 72 ms
75,896 KB
testcase_18 AC 70 ms
76,016 KB
testcase_19 WA -
testcase_20 AC 77 ms
108,880 KB
testcase_21 AC 77 ms
109,192 KB
testcase_22 AC 62 ms
90,632 KB
testcase_23 AC 104 ms
112,296 KB
testcase_24 AC 86 ms
104,848 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 AC 88 ms
101,740 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 100 ms
112,208 KB
testcase_41 AC 124 ms
112,452 KB
testcase_42 AC 103 ms
112,308 KB
testcase_43 AC 104 ms
112,452 KB
testcase_44 AC 102 ms
112,576 KB
testcase_45 AC 105 ms
112,444 KB
testcase_46 AC 100 ms
112,800 KB
testcase_47 AC 101 ms
112,308 KB
testcase_48 AC 102 ms
112,316 KB
testcase_49 AC 104 ms
112,448 KB
testcase_50 AC 107 ms
112,800 KB
testcase_51 AC 99 ms
112,320 KB
testcase_52 AC 119 ms
112,428 KB
testcase_53 AC 106 ms
112,552 KB
testcase_54 AC 106 ms
112,292 KB
testcase_55 AC 104 ms
112,196 KB
testcase_56 AC 105 ms
112,448 KB
testcase_57 AC 105 ms
112,440 KB
testcase_58 AC 107 ms
112,180 KB
testcase_59 AC 102 ms
112,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

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