結果

問題 No.406 鴨等間隔の法則
ユーザー gorugo30gorugo30
提出日時 2021-02-23 00:04:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 1,054 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 85,024 KB
最終ジャッジ日時 2024-09-21 19:25:07
合計ジャッジ時間 5,073 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
68,556 KB
testcase_01 AC 38 ms
52,028 KB
testcase_02 AC 38 ms
52,208 KB
testcase_03 AC 39 ms
52,432 KB
testcase_04 AC 75 ms
81,004 KB
testcase_05 AC 53 ms
67,408 KB
testcase_06 AC 54 ms
66,552 KB
testcase_07 AC 55 ms
66,904 KB
testcase_08 AC 87 ms
80,708 KB
testcase_09 AC 79 ms
82,608 KB
testcase_10 AC 55 ms
68,908 KB
testcase_11 AC 69 ms
76,740 KB
testcase_12 AC 57 ms
71,016 KB
testcase_13 AC 57 ms
71,472 KB
testcase_14 AC 74 ms
80,056 KB
testcase_15 AC 43 ms
59,992 KB
testcase_16 AC 43 ms
60,336 KB
testcase_17 AC 41 ms
59,036 KB
testcase_18 AC 43 ms
60,116 KB
testcase_19 AC 45 ms
60,904 KB
testcase_20 AC 47 ms
62,828 KB
testcase_21 AC 45 ms
61,064 KB
testcase_22 AC 50 ms
64,884 KB
testcase_23 AC 60 ms
72,068 KB
testcase_24 AC 71 ms
78,656 KB
testcase_25 AC 79 ms
83,440 KB
testcase_26 AC 81 ms
83,828 KB
testcase_27 AC 65 ms
82,148 KB
testcase_28 AC 65 ms
84,352 KB
testcase_29 AC 81 ms
83,768 KB
testcase_30 AC 81 ms
85,024 KB
testcase_31 AC 79 ms
83,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = True
S = list(map(int, input().split()))
S.sort()
d = S[1] - S[0]
for i in range(1, N - 1):
    if d != S[i + 1] - S[i]:
        ans = False
        break
if ans and d != 0:
    print("YES")
else:
    print("NO")
0