結果

問題 No.406 鴨等間隔の法則
ユーザー liny_tailliny_tail
提出日時 2020-08-10 12:30:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 699 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 21,612 KB
最終ジャッジ日時 2024-10-06 23:31:46
合計ジャッジ時間 3,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
15,168 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 104 ms
20,064 KB
testcase_05 AC 52 ms
14,340 KB
testcase_06 AC 52 ms
14,088 KB
testcase_07 AC 54 ms
15,444 KB
testcase_08 AC 99 ms
20,764 KB
testcase_09 AC 102 ms
21,296 KB
testcase_10 AC 55 ms
14,804 KB
testcase_11 AC 83 ms
18,944 KB
testcase_12 AC 65 ms
15,868 KB
testcase_13 AC 59 ms
15,492 KB
testcase_14 AC 92 ms
19,372 KB
testcase_15 AC 30 ms
11,136 KB
testcase_16 AC 32 ms
11,904 KB
testcase_17 AC 28 ms
11,136 KB
testcase_18 AC 31 ms
12,032 KB
testcase_19 AC 32 ms
11,392 KB
testcase_20 AC 35 ms
11,904 KB
testcase_21 AC 36 ms
12,544 KB
testcase_22 AC 43 ms
13,332 KB
testcase_23 AC 66 ms
16,132 KB
testcase_24 AC 76 ms
18,488 KB
testcase_25 AC 110 ms
21,232 KB
testcase_26 AC 101 ms
21,612 KB
testcase_27 AC 71 ms
21,356 KB
testcase_28 AC 81 ms
21,112 KB
testcase_29 AC 98 ms
21,488 KB
testcase_30 AC 93 ms
21,360 KB
testcase_31 AC 97 ms
20,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input().strip())
x = sorted([int(i) for i in input().strip().split(' ')])

lst = [(b - a) for a, b in zip(x, x[1:]) if b - a != 0]

if len(lst) != N - 1:
  print('NO')
  exit(0)

lst = list(set(lst))
print(['YES', 'NO'][len(lst) != 1])
0