結果

問題 No.406 鴨等間隔の法則
ユーザー HagianHagian
提出日時 2021-06-21 16:25:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,620 KB
最終ジャッジ日時 2024-06-22 22:50:47
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
17,136 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 85 ms
22,544 KB
testcase_05 AC 52 ms
17,024 KB
testcase_06 AC 49 ms
16,268 KB
testcase_07 AC 50 ms
17,216 KB
testcase_08 AC 88 ms
22,524 KB
testcase_09 AC 92 ms
24,216 KB
testcase_10 AC 54 ms
16,992 KB
testcase_11 AC 75 ms
19,076 KB
testcase_12 AC 59 ms
17,732 KB
testcase_13 AC 55 ms
16,324 KB
testcase_14 AC 103 ms
22,856 KB
testcase_15 AC 29 ms
11,264 KB
testcase_16 AC 31 ms
12,160 KB
testcase_17 AC 32 ms
11,392 KB
testcase_18 AC 32 ms
12,288 KB
testcase_19 AC 36 ms
12,288 KB
testcase_20 AC 37 ms
12,672 KB
testcase_21 AC 35 ms
12,800 KB
testcase_22 AC 49 ms
15,768 KB
testcase_23 AC 59 ms
17,240 KB
testcase_24 AC 86 ms
18,868 KB
testcase_25 AC 101 ms
23,612 KB
testcase_26 AC 112 ms
24,620 KB
testcase_27 AC 69 ms
22,400 KB
testcase_28 AC 71 ms
23,784 KB
testcase_29 AC 112 ms
24,560 KB
testcase_30 AC 112 ms
24,428 KB
testcase_31 AC 90 ms
24,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = [int(i) for i in input().split()]
x.sort()
res = x[1] - x[0]
if len(x) == len(set(x)):
    for i in range(2,len(x)):
        a = x[i] - x[i-1]
        if a != res:
            res = -1
            break
        else:
            pass
    if res == -1:
        print("NO")
    else:
        print("YES")
else:
    print("NO")
0