結果

問題 No.406 鴨等間隔の法則
ユーザー ああいいああいい
提出日時 2022-05-17 16:53:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 83,456 KB
最終ジャッジ日時 2024-09-15 11:38:28
合計ジャッジ時間 3,659 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
70,016 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 80 ms
80,896 KB
testcase_05 AC 54 ms
67,328 KB
testcase_06 AC 55 ms
68,096 KB
testcase_07 AC 56 ms
68,480 KB
testcase_08 AC 77 ms
81,280 KB
testcase_09 AC 81 ms
83,200 KB
testcase_10 AC 58 ms
70,016 KB
testcase_11 AC 72 ms
77,952 KB
testcase_12 AC 62 ms
71,296 KB
testcase_13 AC 60 ms
70,912 KB
testcase_14 AC 75 ms
79,744 KB
testcase_15 AC 44 ms
59,648 KB
testcase_16 AC 45 ms
60,416 KB
testcase_17 AC 44 ms
59,648 KB
testcase_18 AC 44 ms
60,416 KB
testcase_19 AC 45 ms
60,160 KB
testcase_20 AC 46 ms
61,312 KB
testcase_21 AC 46 ms
61,952 KB
testcase_22 AC 49 ms
63,488 KB
testcase_23 AC 63 ms
72,832 KB
testcase_24 AC 70 ms
77,312 KB
testcase_25 AC 80 ms
83,456 KB
testcase_26 AC 81 ms
82,560 KB
testcase_27 AC 65 ms
81,536 KB
testcase_28 AC 66 ms
83,072 KB
testcase_29 AC 81 ms
83,072 KB
testcase_30 AC 79 ms
82,944 KB
testcase_31 AC 79 ms
83,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = list(map(int,input().split()))

x.sort()
import sys
s  = {x[i+1] - x[i] for i in range(N - 1)}
if 0 in s:
    print('NO')
    exit()
if len(s) > 1:
    print("NO")
    exit()
print('YES')
0