結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
15,136 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 101 ms
20,196 KB
testcase_05 AC 54 ms
14,860 KB
testcase_06 AC 55 ms
14,988 KB
testcase_07 AC 56 ms
15,780 KB
testcase_08 AC 100 ms
20,792 KB
testcase_09 AC 107 ms
21,300 KB
testcase_10 AC 59 ms
14,872 KB
testcase_11 AC 88 ms
18,652 KB
testcase_12 AC 67 ms
16,308 KB
testcase_13 AC 64 ms
15,620 KB
testcase_14 AC 97 ms
19,516 KB
testcase_15 AC 33 ms
11,264 KB
testcase_16 AC 34 ms
11,264 KB
testcase_17 AC 32 ms
11,136 KB
testcase_18 AC 33 ms
11,648 KB
testcase_19 AC 37 ms
11,776 KB
testcase_20 AC 38 ms
11,904 KB
testcase_21 AC 39 ms
12,160 KB
testcase_22 AC 47 ms
13,424 KB
testcase_23 AC 70 ms
16,556 KB
testcase_24 AC 86 ms
18,568 KB
testcase_25 AC 108 ms
21,368 KB
testcase_26 AC 110 ms
21,400 KB
testcase_27 AC 77 ms
21,528 KB
testcase_28 AC 81 ms
21,368 KB
testcase_29 AC 109 ms
21,532 KB
testcase_30 AC 109 ms
21,372 KB
testcase_31 AC 104 ms
20,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3


def main():
    _ = int(input())
    xs = sorted(int(x) for x in input().split())
    ds = [xj - xi for xi, xj in zip(xs[:-1], xs[1:])]
    print("YES" if ds[0] > 0 and all(d == ds[0] for d in ds) else "NO")


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