結果

問題 No.406 鴨等間隔の法則
ユーザー RK PythonRK Python
提出日時 2020-06-01 22:22:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,808 KB
最終ジャッジ日時 2024-05-02 02:34:35
合計ジャッジ時間 4,425 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
16,664 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 82 ms
22,660 KB
testcase_05 AC 51 ms
16,908 KB
testcase_06 AC 53 ms
16,020 KB
testcase_07 AC 51 ms
17,220 KB
testcase_08 AC 84 ms
23,180 KB
testcase_09 AC 86 ms
23,592 KB
testcase_10 AC 53 ms
16,664 KB
testcase_11 AC 70 ms
19,032 KB
testcase_12 AC 56 ms
17,592 KB
testcase_13 AC 57 ms
16,200 KB
testcase_14 AC 149 ms
22,652 KB
testcase_15 AC 35 ms
11,392 KB
testcase_16 AC 42 ms
12,160 KB
testcase_17 AC 37 ms
11,264 KB
testcase_18 AC 41 ms
12,032 KB
testcase_19 AC 41 ms
12,288 KB
testcase_20 AC 45 ms
12,544 KB
testcase_21 AC 48 ms
12,672 KB
testcase_22 AC 58 ms
15,644 KB
testcase_23 AC 60 ms
18,080 KB
testcase_24 AC 111 ms
18,684 KB
testcase_25 AC 85 ms
23,568 KB
testcase_26 AC 153 ms
23,808 KB
testcase_27 AC 75 ms
21,744 KB
testcase_28 AC 86 ms
23,676 KB
testcase_29 AC 158 ms
23,732 KB
testcase_30 AC 153 ms
23,620 KB
testcase_31 AC 84 ms
23,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = [int(i) for i in input().split()]
if len(set(x)) == len(x):
    x.sort()
    xd = {}
    for i in range(1,N):
        d = x[i] - x[i-1]
        try:
            xd[d] += 1
        except:
            xd[d] = 1
    print("YES" if len(xd.keys()) == 1 else "NO")
else:
    print("NO")
0