結果

問題 No.406 鴨等間隔の法則
ユーザー ThetaTheta
提出日時 2022-10-30 13:14:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 499 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 51,732 KB
最終ジャッジ日時 2024-07-07 05:29:37
合計ジャッジ時間 18,533 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 443 ms
45,720 KB
testcase_01 AC 419 ms
44,052 KB
testcase_02 AC 418 ms
44,444 KB
testcase_03 AC 420 ms
43,804 KB
testcase_04 AC 474 ms
50,716 KB
testcase_05 AC 439 ms
45,720 KB
testcase_06 AC 442 ms
45,476 KB
testcase_07 AC 455 ms
45,732 KB
testcase_08 AC 479 ms
49,944 KB
testcase_09 AC 486 ms
50,972 KB
testcase_10 AC 489 ms
45,852 KB
testcase_11 AC 473 ms
49,056 KB
testcase_12 AC 454 ms
46,872 KB
testcase_13 AC 448 ms
46,492 KB
testcase_14 AC 472 ms
49,440 KB
testcase_15 AC 427 ms
43,800 KB
testcase_16 AC 428 ms
44,056 KB
testcase_17 AC 455 ms
44,052 KB
testcase_18 AC 438 ms
43,800 KB
testcase_19 AC 442 ms
43,804 KB
testcase_20 AC 424 ms
44,056 KB
testcase_21 AC 423 ms
43,800 KB
testcase_22 AC 435 ms
45,088 KB
testcase_23 AC 458 ms
46,872 KB
testcase_24 AC 476 ms
48,796 KB
testcase_25 AC 483 ms
51,092 KB
testcase_26 AC 499 ms
51,732 KB
testcase_27 AC 462 ms
51,652 KB
testcase_28 AC 467 ms
51,104 KB
testcase_29 AC 486 ms
51,480 KB
testcase_30 AC 479 ms
51,352 KB
testcase_31 AC 480 ms
50,464 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 and x_diff[0]:
        print("YES")
    else:
        print("NO")


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