結果

問題 No.406 鴨等間隔の法則
ユーザー vwxyzvwxyz
提出日時 2022-08-05 23:04:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,480 KB
最終ジャッジ日時 2024-09-15 20:36:22
合計ジャッジ時間 4,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
15,152 KB
testcase_01 AC 29 ms
10,368 KB
testcase_02 AC 29 ms
10,368 KB
testcase_03 AC 30 ms
10,368 KB
testcase_04 AC 111 ms
20,308 KB
testcase_05 AC 57 ms
14,228 KB
testcase_06 AC 59 ms
14,424 KB
testcase_07 AC 59 ms
14,496 KB
testcase_08 AC 112 ms
20,116 KB
testcase_09 AC 120 ms
21,160 KB
testcase_10 AC 63 ms
15,132 KB
testcase_11 AC 96 ms
18,940 KB
testcase_12 AC 72 ms
15,860 KB
testcase_13 AC 70 ms
15,480 KB
testcase_14 AC 100 ms
19,492 KB
testcase_15 AC 32 ms
11,008 KB
testcase_16 AC 35 ms
11,264 KB
testcase_17 AC 32 ms
11,008 KB
testcase_18 AC 34 ms
11,264 KB
testcase_19 AC 35 ms
11,520 KB
testcase_20 AC 39 ms
11,904 KB
testcase_21 AC 40 ms
11,904 KB
testcase_22 AC 47 ms
12,928 KB
testcase_23 AC 73 ms
16,252 KB
testcase_24 AC 90 ms
18,484 KB
testcase_25 AC 121 ms
21,224 KB
testcase_26 AC 113 ms
21,476 KB
testcase_27 AC 86 ms
21,480 KB
testcase_28 AC 91 ms
21,352 KB
testcase_29 AC 113 ms
21,352 KB
testcase_30 AC 108 ms
21,352 KB
testcase_31 AC 114 ms
20,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
from collections import Counter

N=int(readline())
X=sorted(list(map(int,readline().split())))
x0=X[0]
d=X[1]-X[0]
ans="YES"
for i in range(N):
    if X[i]!=x0+d*i:
        ans="NO"
if d==0:
    ans="NO"
print(ans)
0