結果

問題 No.406 鴨等間隔の法則
ユーザー ABKZABKZ
提出日時 2021-07-14 11:47:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 87,296 KB
最終ジャッジ日時 2024-07-03 11:25:50
合計ジャッジ時間 3,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
69,248 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 72 ms
81,280 KB
testcase_05 AC 50 ms
67,328 KB
testcase_06 AC 56 ms
67,584 KB
testcase_07 AC 54 ms
68,352 KB
testcase_08 AC 74 ms
81,408 KB
testcase_09 AC 80 ms
83,968 KB
testcase_10 AC 57 ms
69,632 KB
testcase_11 AC 75 ms
78,424 KB
testcase_12 AC 61 ms
71,040 KB
testcase_13 AC 59 ms
70,784 KB
testcase_14 AC 81 ms
83,072 KB
testcase_15 AC 43 ms
59,648 KB
testcase_16 AC 42 ms
60,160 KB
testcase_17 AC 42 ms
59,392 KB
testcase_18 AC 42 ms
60,416 KB
testcase_19 AC 44 ms
60,672 KB
testcase_20 AC 45 ms
61,440 KB
testcase_21 AC 45 ms
61,824 KB
testcase_22 AC 51 ms
64,640 KB
testcase_23 AC 60 ms
72,320 KB
testcase_24 AC 74 ms
80,000 KB
testcase_25 AC 78 ms
83,968 KB
testcase_26 AC 88 ms
87,296 KB
testcase_27 AC 72 ms
86,272 KB
testcase_28 AC 65 ms
83,584 KB
testcase_29 AC 89 ms
87,168 KB
testcase_30 AC 88 ms
87,296 KB
testcase_31 AC 79 ms
83,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = list(map(int, input().split()))
x.sort()

d = (x[-1] - x[0]) / (N - 1)
t = [x[0] + d * i for i in range(N)]

if x == t and d != 0:
    print("YES")
else:
    print("NO")
0