結果

問題 No.2860 Heal Slimes
ユーザー rimerime
提出日時 2024-08-25 15:11:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 402 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 91,708 KB
最終ジャッジ日時 2024-08-25 15:12:31
合計ジャッジ時間 42,899 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 603 ms
43,540 KB
testcase_11 AC 601 ms
43,676 KB
testcase_12 AC 634 ms
43,808 KB
testcase_13 AC 606 ms
43,780 KB
testcase_14 AC 603 ms
43,540 KB
testcase_15 AC 602 ms
43,548 KB
testcase_16 AC 634 ms
43,552 KB
testcase_17 AC 605 ms
43,524 KB
testcase_18 AC 633 ms
43,780 KB
testcase_19 AC 606 ms
43,680 KB
testcase_20 AC 633 ms
56,624 KB
testcase_21 AC 603 ms
57,296 KB
testcase_22 AC 607 ms
50,384 KB
testcase_23 AC 615 ms
62,240 KB
testcase_24 AC 636 ms
60,484 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 632 ms
62,248 KB
testcase_41 AC 627 ms
61,996 KB
testcase_42 AC 625 ms
62,132 KB
testcase_43 AC 618 ms
62,128 KB
testcase_44 AC 628 ms
62,140 KB
testcase_45 AC 615 ms
62,120 KB
testcase_46 AC 631 ms
62,512 KB
testcase_47 AC 626 ms
62,388 KB
testcase_48 AC 628 ms
62,128 KB
testcase_49 AC 623 ms
62,388 KB
testcase_50 AC 629 ms
62,520 KB
testcase_51 AC 613 ms
62,516 KB
testcase_52 AC 640 ms
62,640 KB
testcase_53 AC 612 ms
62,632 KB
testcase_54 AC 627 ms
62,400 KB
testcase_55 AC 635 ms
62,636 KB
testcase_56 AC 621 ms
62,124 KB
testcase_57 AC 644 ms
62,248 KB
testcase_58 AC 613 ms
62,396 KB
testcase_59 AC 640 ms
91,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
    
T = int(input())

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