結果

問題 No.406 鴨等間隔の法則
ユーザー ThetaTheta
提出日時 2022-10-30 13:14:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,672 KB
最終ジャッジ日時 2024-07-07 05:29:02
合計ジャッジ時間 19,612 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 467 ms
43,808 KB
testcase_01 AC 433 ms
43,424 KB
testcase_02 AC 434 ms
43,548 KB
testcase_03 WA -
testcase_04 AC 499 ms
48,760 KB
testcase_05 AC 486 ms
43,424 KB
testcase_06 AC 486 ms
43,684 KB
testcase_07 AC 472 ms
44,188 KB
testcase_08 AC 520 ms
48,696 KB
testcase_09 AC 520 ms
49,664 KB
testcase_10 AC 471 ms
43,816 KB
testcase_11 AC 495 ms
47,852 KB
testcase_12 AC 499 ms
45,220 KB
testcase_13 AC 478 ms
44,576 KB
testcase_14 AC 500 ms
47,988 KB
testcase_15 WA -
testcase_16 AC 452 ms
43,540 KB
testcase_17 AC 458 ms
43,676 KB
testcase_18 AC 454 ms
43,420 KB
testcase_19 AC 451 ms
43,544 KB
testcase_20 AC 448 ms
43,420 KB
testcase_21 AC 475 ms
43,420 KB
testcase_22 AC 455 ms
43,804 KB
testcase_23 AC 471 ms
45,476 KB
testcase_24 AC 492 ms
47,404 KB
testcase_25 AC 504 ms
49,728 KB
testcase_26 AC 500 ms
50,292 KB
testcase_27 WA -
testcase_28 AC 484 ms
49,856 KB
testcase_29 AC 507 ms
50,672 KB
testcase_30 AC 507 ms
50,436 KB
testcase_31 AC 506 ms
49,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import diff


def main():
    N = int(input())
    x = list(map(int, input().split()))
    x.sort()
    x_diff = diff(x)
    if len(set(x_diff)) == 1:
        print("YES")
    else:
        print("NO")


if __name__ == "__main__":
    main()
0