結果

問題 No.406 鴨等間隔の法則
ユーザー kohei2019kohei2019
提出日時 2022-01-22 19:46:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-05-05 19:49:42
合計ジャッジ時間 3,155 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
68,096 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 75 ms
79,360 KB
testcase_05 AC 57 ms
65,664 KB
testcase_06 AC 54 ms
66,304 KB
testcase_07 AC 56 ms
67,072 KB
testcase_08 AC 73 ms
79,744 KB
testcase_09 AC 75 ms
82,304 KB
testcase_10 AC 53 ms
67,840 KB
testcase_11 AC 68 ms
76,928 KB
testcase_12 AC 62 ms
69,888 KB
testcase_13 AC 57 ms
69,248 KB
testcase_14 AC 72 ms
79,744 KB
testcase_15 AC 41 ms
58,880 KB
testcase_16 AC 41 ms
59,008 KB
testcase_17 AC 40 ms
58,240 KB
testcase_18 AC 40 ms
59,392 KB
testcase_19 AC 43 ms
60,416 KB
testcase_20 AC 48 ms
61,184 KB
testcase_21 AC 44 ms
60,416 KB
testcase_22 AC 47 ms
63,744 KB
testcase_23 AC 60 ms
70,656 KB
testcase_24 AC 67 ms
77,568 KB
testcase_25 AC 74 ms
82,176 KB
testcase_26 AC 77 ms
83,072 KB
testcase_27 AC 59 ms
81,536 KB
testcase_28 AC 63 ms
82,304 KB
testcase_29 AC 78 ms
83,200 KB
testcase_30 AC 80 ms
82,944 KB
testcase_31 AC 73 ms
81,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsx = list(map(int,input().split()))
lsx.sort()
d = lsx[1]-lsx[0]
if d == 0:
    print('NO')
    exit()
for i in range(N-1):
    if d == lsx[i+1]-lsx[i]:
        continue
    print('NO')
    exit()
print('YES')
0