結果

問題 No.406 鴨等間隔の法則
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-16 00:06:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 107,984 KB
最終ジャッジ日時 2024-07-23 15:39:39
合計ジャッジ時間 4,177 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
74,896 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 35 ms
52,068 KB
testcase_03 AC 35 ms
52,772 KB
testcase_04 AC 69 ms
93,268 KB
testcase_05 AC 50 ms
70,908 KB
testcase_06 AC 50 ms
72,148 KB
testcase_07 AC 50 ms
72,192 KB
testcase_08 AC 68 ms
92,848 KB
testcase_09 AC 73 ms
97,708 KB
testcase_10 AC 52 ms
75,516 KB
testcase_11 AC 66 ms
89,352 KB
testcase_12 AC 55 ms
77,840 KB
testcase_13 AC 56 ms
77,720 KB
testcase_14 AC 88 ms
101,920 KB
testcase_15 AC 40 ms
58,624 KB
testcase_16 AC 43 ms
62,464 KB
testcase_17 AC 41 ms
60,416 KB
testcase_18 AC 42 ms
62,208 KB
testcase_19 AC 44 ms
62,720 KB
testcase_20 AC 45 ms
64,640 KB
testcase_21 AC 47 ms
65,664 KB
testcase_22 AC 50 ms
68,608 KB
testcase_23 AC 59 ms
79,616 KB
testcase_24 AC 82 ms
97,304 KB
testcase_25 AC 74 ms
96,836 KB
testcase_26 AC 98 ms
107,984 KB
testcase_27 AC 58 ms
81,408 KB
testcase_28 AC 73 ms
96,896 KB
testcase_29 AC 98 ms
107,904 KB
testcase_30 AC 99 ms
107,008 KB
testcase_31 AC 73 ms
96,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))

if len(set(A))!=len(A):
    print("NO")
    exit()

A.sort()
d = [b-a for a,b in zip(A[:-1],A[1:])]
if len(set(d))==1:
    print("YES")
else:
    print("NO")
0