結果

問題 No.406 鴨等間隔の法則
ユーザー netyo715netyo715
提出日時 2021-06-28 11:19:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,736 KB
最終ジャッジ日時 2024-06-25 12:06:53
合計ジャッジ時間 4,483 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
15,592 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 117 ms
20,436 KB
testcase_05 AC 59 ms
15,352 KB
testcase_06 AC 60 ms
15,228 KB
testcase_07 AC 59 ms
15,276 KB
testcase_08 AC 109 ms
21,012 KB
testcase_09 AC 120 ms
21,404 KB
testcase_10 AC 62 ms
15,240 KB
testcase_11 AC 96 ms
19,068 KB
testcase_12 AC 72 ms
16,160 KB
testcase_13 AC 69 ms
15,744 KB
testcase_14 AC 102 ms
19,616 KB
testcase_15 WA -
testcase_16 AC 34 ms
12,160 KB
testcase_17 AC 33 ms
11,392 KB
testcase_18 AC 35 ms
12,288 KB
testcase_19 AC 36 ms
11,648 KB
testcase_20 AC 39 ms
12,032 KB
testcase_21 AC 40 ms
12,672 KB
testcase_22 AC 47 ms
13,312 KB
testcase_23 AC 73 ms
16,548 KB
testcase_24 AC 87 ms
18,672 KB
testcase_25 AC 124 ms
21,608 KB
testcase_26 AC 111 ms
21,728 KB
testcase_27 WA -
testcase_28 AC 88 ms
21,352 KB
testcase_29 AC 109 ms
21,732 KB
testcase_30 AC 108 ms
21,728 KB
testcase_31 AC 115 ms
21,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
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