結果

問題 No.406 鴨等間隔の法則
ユーザー netyo715netyo715
提出日時 2021-06-28 11:20:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,940 KB
最終ジャッジ日時 2024-06-25 12:06:59
合計ジャッジ時間 3,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
16,656 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 69 ms
22,652 KB
testcase_05 AC 44 ms
16,896 KB
testcase_06 AC 46 ms
17,028 KB
testcase_07 AC 46 ms
17,208 KB
testcase_08 AC 71 ms
23,280 KB
testcase_09 AC 73 ms
23,576 KB
testcase_10 AC 47 ms
16,780 KB
testcase_11 AC 62 ms
19,016 KB
testcase_12 AC 50 ms
17,720 KB
testcase_13 AC 48 ms
17,308 KB
testcase_14 AC 101 ms
22,804 KB
testcase_15 AC 31 ms
11,392 KB
testcase_16 AC 35 ms
12,176 KB
testcase_17 AC 32 ms
11,392 KB
testcase_18 AC 35 ms
12,288 KB
testcase_19 AC 36 ms
12,288 KB
testcase_20 AC 38 ms
12,800 KB
testcase_21 AC 40 ms
12,672 KB
testcase_22 AC 48 ms
15,624 KB
testcase_23 AC 52 ms
18,116 KB
testcase_24 AC 85 ms
18,808 KB
testcase_25 AC 74 ms
23,608 KB
testcase_26 AC 110 ms
23,932 KB
testcase_27 AC 65 ms
21,744 KB
testcase_28 AC 74 ms
23,656 KB
testcase_29 AC 111 ms
23,940 KB
testcase_30 AC 111 ms
23,884 KB
testcase_31 AC 73 ms
23,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
if len(X) != len(set(X)):
    print("NO")
    exit()
X.sort()
y = [X[i+1]-X[i] for i in range(N-1)]
if len(set(y)) != 1:
    print("NO")
else:
    print("YES")
0