結果

問題 No.406 鴨等間隔の法則
ユーザー はむ吉🐹はむ吉🐹
提出日時 2018-07-18 18:47:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 516 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 48,532 KB
最終ジャッジ日時 2024-07-07 12:28:31
合計ジャッジ時間 18,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 469 ms
44,820 KB
testcase_01 AC 450 ms
44,180 KB
testcase_02 AC 445 ms
44,056 KB
testcase_03 AC 438 ms
44,184 KB
testcase_04 AC 516 ms
47,768 KB
testcase_05 AC 466 ms
44,916 KB
testcase_06 AC 466 ms
45,076 KB
testcase_07 AC 465 ms
45,116 KB
testcase_08 AC 500 ms
47,104 KB
testcase_09 AC 494 ms
48,148 KB
testcase_10 AC 462 ms
45,200 KB
testcase_11 AC 478 ms
46,864 KB
testcase_12 AC 470 ms
44,956 KB
testcase_13 AC 461 ms
44,692 KB
testcase_14 AC 482 ms
47,124 KB
testcase_15 AC 448 ms
44,212 KB
testcase_16 AC 461 ms
44,316 KB
testcase_17 AC 452 ms
44,432 KB
testcase_18 AC 452 ms
44,308 KB
testcase_19 AC 456 ms
44,308 KB
testcase_20 AC 445 ms
43,924 KB
testcase_21 AC 445 ms
44,300 KB
testcase_22 AC 458 ms
44,300 KB
testcase_23 AC 468 ms
45,456 KB
testcase_24 AC 484 ms
46,612 KB
testcase_25 AC 494 ms
47,892 KB
testcase_26 AC 495 ms
48,272 KB
testcase_27 AC 482 ms
48,532 KB
testcase_28 AC 483 ms
47,688 KB
testcase_29 AC 483 ms
48,408 KB
testcase_30 AC 499 ms
48,516 KB
testcase_31 AC 492 ms
47,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3


import numpy


def main():
    _ = int(input())
    xs = numpy.fromiter((int(x) for x in input().split()), dtype=numpy.int32)
    xs.sort()
    ds = numpy.diff(xs)
    print("YES" if ds[0] > 0 and numpy.all(ds == ds[0])  else "NO")


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