結果

問題 No.2860 Heal Slimes
ユーザー rimerime
提出日時 2024-08-25 15:36:57
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 511 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 118,900 KB
最終ジャッジ日時 2024-08-25 15:37:06
合計ジャッジ時間 7,970 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 76 ms
75,844 KB
testcase_11 AC 75 ms
75,864 KB
testcase_12 AC 72 ms
75,896 KB
testcase_13 AC 78 ms
75,944 KB
testcase_14 AC 74 ms
76,060 KB
testcase_15 AC 92 ms
75,740 KB
testcase_16 WA -
testcase_17 AC 73 ms
75,828 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 83 ms
108,468 KB
testcase_21 AC 82 ms
109,212 KB
testcase_22 AC 64 ms
90,064 KB
testcase_23 AC 101 ms
112,488 KB
testcase_24 AC 87 ms
104,256 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 91 ms
101,620 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 126 ms
112,536 KB
testcase_41 AC 102 ms
112,404 KB
testcase_42 AC 98 ms
112,488 KB
testcase_43 AC 102 ms
112,296 KB
testcase_44 AC 108 ms
112,156 KB
testcase_45 AC 104 ms
112,408 KB
testcase_46 AC 106 ms
112,408 KB
testcase_47 AC 102 ms
112,576 KB
testcase_48 AC 104 ms
112,272 KB
testcase_49 AC 103 ms
112,144 KB
testcase_50 AC 106 ms
112,284 KB
testcase_51 AC 124 ms
112,400 KB
testcase_52 AC 101 ms
112,552 KB
testcase_53 AC 99 ms
112,300 KB
testcase_54 AC 101 ms
112,344 KB
testcase_55 AC 100 ms
112,304 KB
testcase_56 AC 101 ms
112,532 KB
testcase_57 AC 102 ms
112,420 KB
testcase_58 AC 103 ms
112,564 KB
testcase_59 AC 102 ms
112,668 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] | H[C[0]-1] < H[C[0]-2]:
        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