結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
16,664 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 79 ms
22,664 KB
testcase_05 AC 47 ms
16,780 KB
testcase_06 AC 49 ms
16,020 KB
testcase_07 AC 48 ms
17,092 KB
testcase_08 AC 77 ms
22,980 KB
testcase_09 AC 82 ms
23,588 KB
testcase_10 AC 49 ms
16,408 KB
testcase_11 AC 68 ms
18,900 KB
testcase_12 AC 54 ms
17,596 KB
testcase_13 AC 52 ms
16,328 KB
testcase_14 AC 129 ms
22,672 KB
testcase_15 AC 32 ms
11,392 KB
testcase_16 AC 40 ms
12,288 KB
testcase_17 AC 34 ms
11,264 KB
testcase_18 AC 41 ms
12,160 KB
testcase_19 AC 38 ms
12,160 KB
testcase_20 AC 42 ms
12,544 KB
testcase_21 AC 45 ms
12,544 KB
testcase_22 AC 53 ms
15,512 KB
testcase_23 AC 57 ms
17,888 KB
testcase_24 AC 102 ms
18,564 KB
testcase_25 AC 81 ms
23,692 KB
testcase_26 AC 136 ms
23,932 KB
testcase_27 AC 73 ms
21,868 KB
testcase_28 AC 84 ms
23,496 KB
testcase_29 AC 140 ms
23,812 KB
testcase_30 AC 135 ms
23,748 KB
testcase_31 AC 79 ms
22,980 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