結果

問題 No.406 鴨等間隔の法則
ユーザー yumechiyumechi
提出日時 2016-08-22 23:40:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 93,568 KB
最終ジャッジ日時 2024-07-07 11:39:17
合計ジャッジ時間 3,506 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
72,064 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 87 ms
88,448 KB
testcase_05 AC 58 ms
69,120 KB
testcase_06 AC 61 ms
69,248 KB
testcase_07 AC 59 ms
70,016 KB
testcase_08 AC 86 ms
88,192 KB
testcase_09 AC 93 ms
91,776 KB
testcase_10 AC 61 ms
71,424 KB
testcase_11 AC 81 ms
84,992 KB
testcase_12 AC 66 ms
74,880 KB
testcase_13 AC 65 ms
74,752 KB
testcase_14 AC 84 ms
88,704 KB
testcase_15 AC 45 ms
58,368 KB
testcase_16 AC 46 ms
60,928 KB
testcase_17 AC 45 ms
59,008 KB
testcase_18 AC 46 ms
61,184 KB
testcase_19 AC 46 ms
60,928 KB
testcase_20 AC 47 ms
62,208 KB
testcase_21 AC 49 ms
63,488 KB
testcase_22 AC 53 ms
65,792 KB
testcase_23 AC 69 ms
76,544 KB
testcase_24 AC 80 ms
85,632 KB
testcase_25 AC 91 ms
91,904 KB
testcase_26 AC 96 ms
93,568 KB
testcase_27 AC 62 ms
75,520 KB
testcase_28 AC 76 ms
91,648 KB
testcase_29 AC 92 ms
93,184 KB
testcase_30 AC 92 ms
93,440 KB
testcase_31 AC 89 ms
91,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xl = sorted([int(i) for i in input().split()])
if len(set(xl)) != n:
    print("NO")
    exit(0)
print("YES" if len(set([xl[i] - xl[i+1] for i in range(n-1)])) == 1 else "NO")
0