結果

問題 No.406 鴨等間隔の法則
ユーザー miya145592miya145592
提出日時 2023-05-03 15:58:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 929 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 84,668 KB
最終ジャッジ日時 2024-11-21 19:09:53
合計ジャッジ時間 3,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
68,652 KB
testcase_01 AC 37 ms
52,032 KB
testcase_02 AC 37 ms
53,364 KB
testcase_03 AC 38 ms
54,156 KB
testcase_04 AC 76 ms
80,944 KB
testcase_05 AC 50 ms
67,492 KB
testcase_06 AC 50 ms
67,620 KB
testcase_07 AC 53 ms
67,832 KB
testcase_08 AC 71 ms
81,328 KB
testcase_09 AC 74 ms
82,920 KB
testcase_10 AC 52 ms
69,488 KB
testcase_11 AC 68 ms
77,508 KB
testcase_12 AC 55 ms
70,020 KB
testcase_13 AC 56 ms
70,592 KB
testcase_14 AC 69 ms
79,956 KB
testcase_15 AC 38 ms
59,284 KB
testcase_16 AC 39 ms
59,952 KB
testcase_17 AC 39 ms
60,088 KB
testcase_18 AC 40 ms
60,364 KB
testcase_19 AC 42 ms
60,936 KB
testcase_20 AC 45 ms
62,900 KB
testcase_21 AC 42 ms
60,952 KB
testcase_22 AC 45 ms
64,444 KB
testcase_23 AC 57 ms
72,312 KB
testcase_24 AC 67 ms
77,612 KB
testcase_25 AC 72 ms
82,460 KB
testcase_26 AC 76 ms
84,020 KB
testcase_27 AC 58 ms
82,200 KB
testcase_28 AC 60 ms
83,488 KB
testcase_29 AC 76 ms
83,856 KB
testcase_30 AC 78 ms
84,668 KB
testcase_31 AC 75 ms
83,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
X.sort()
sa = X[1]-X[0]
if sa==0:
    print("NO")
    exit()
for i in range(N-1):
    if X[i+1]-X[i]!=sa:
        print("NO")
        exit()
print("YES")
0