結果

問題 No.406 鴨等間隔の法則
ユーザー kichirb3kichirb3
提出日時 2018-02-25 01:01:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-07-07 12:20:40
合計ジャッジ時間 2,932 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
15,156 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 77 ms
20,328 KB
testcase_05 AC 44 ms
14,244 KB
testcase_06 AC 45 ms
14,308 KB
testcase_07 AC 47 ms
14,536 KB
testcase_08 AC 77 ms
20,904 KB
testcase_09 AC 82 ms
21,900 KB
testcase_10 AC 49 ms
15,284 KB
testcase_11 AC 67 ms
18,948 KB
testcase_12 AC 54 ms
15,876 KB
testcase_13 AC 52 ms
15,624 KB
testcase_14 AC 82 ms
19,440 KB
testcase_15 AC 29 ms
11,136 KB
testcase_16 AC 30 ms
11,520 KB
testcase_17 AC 27 ms
11,008 KB
testcase_18 AC 29 ms
11,264 KB
testcase_19 AC 31 ms
11,520 KB
testcase_20 AC 34 ms
11,904 KB
testcase_21 AC 33 ms
11,904 KB
testcase_22 AC 40 ms
12,928 KB
testcase_23 AC 57 ms
16,264 KB
testcase_24 AC 70 ms
18,488 KB
testcase_25 AC 82 ms
21,240 KB
testcase_26 AC 88 ms
22,144 KB
testcase_27 AC 63 ms
22,272 KB
testcase_28 AC 63 ms
21,248 KB
testcase_29 AC 88 ms
22,272 KB
testcase_30 AC 87 ms
22,264 KB
testcase_31 AC 79 ms
21,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
"""
No.406 鴨等間隔の法則
https://yukicoder.me/problems/no/406

"""
import sys
from sys import stdin

input = stdin.readline


def solve(positions):
    result = 'YES'
    positions.sort()
    dist = positions[1] - positions[0]
    if dist == 0:
        return 'NO'

    for a, b in zip(positions, positions[1:]):
        if b - a != dist:
            result = 'NO'
            break
    return result


def main(args):
    N = int(input())
    positions = [int(x) for x in input().split()]
    ans = solve(positions)
    print(ans)


if __name__ == '__main__':
    main(sys.argv[1:])
0