結果

問題 No.406 鴨等間隔の法則
ユーザー matriematrie
提出日時 2020-11-28 04:31:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,644 KB
最終ジャッジ日時 2024-09-12 21:59:05
合計ジャッジ時間 5,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
17,248 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 133 ms
24,036 KB
testcase_05 AC 64 ms
17,188 KB
testcase_06 AC 67 ms
17,212 KB
testcase_07 AC 67 ms
18,052 KB
testcase_08 AC 131 ms
23,932 KB
testcase_09 AC 141 ms
24,644 KB
testcase_10 AC 72 ms
17,292 KB
testcase_11 AC 108 ms
18,984 KB
testcase_12 AC 82 ms
18,160 KB
testcase_13 AC 78 ms
16,956 KB
testcase_14 AC 121 ms
24,080 KB
testcase_15 AC 34 ms
11,264 KB
testcase_16 AC 37 ms
12,168 KB
testcase_17 AC 33 ms
11,264 KB
testcase_18 AC 37 ms
12,160 KB
testcase_19 AC 37 ms
12,288 KB
testcase_20 AC 40 ms
12,672 KB
testcase_21 AC 42 ms
12,544 KB
testcase_22 AC 52 ms
16,016 KB
testcase_23 AC 84 ms
18,576 KB
testcase_24 AC 98 ms
18,556 KB
testcase_25 AC 141 ms
24,628 KB
testcase_26 AC 123 ms
24,448 KB
testcase_27 AC 91 ms
21,728 KB
testcase_28 AC 108 ms
24,576 KB
testcase_29 AC 129 ms
24,504 KB
testcase_30 AC 130 ms
24,260 KB
testcase_31 AC 132 ms
24,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
l = sorted(list(map(int, input().split())))
d = [0]*(N-1)

for i in range(N-1):
	d[i] = l[i+1]-l[i]
print("YES" if len(set(l))!=1 and len(set(d))==1 else "NO")
0