結果

問題 No.406 鴨等間隔の法則
ユーザー akitsugu777akitsugu777
提出日時 2021-02-03 15:02:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,600 KB
最終ジャッジ日時 2024-06-30 01:23:21
合計ジャッジ時間 3,148 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
15,284 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 75 ms
20,184 KB
testcase_05 AC 41 ms
14,072 KB
testcase_06 AC 42 ms
14,328 KB
testcase_07 AC 42 ms
14,512 KB
testcase_08 AC 72 ms
21,008 KB
testcase_09 AC 77 ms
21,280 KB
testcase_10 AC 46 ms
14,920 KB
testcase_11 AC 65 ms
18,936 KB
testcase_12 AC 51 ms
15,984 KB
testcase_13 AC 47 ms
15,608 KB
testcase_14 AC 87 ms
19,356 KB
testcase_15 AC 28 ms
11,136 KB
testcase_16 AC 30 ms
11,392 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 27 ms
11,392 KB
testcase_19 AC 31 ms
11,648 KB
testcase_20 AC 34 ms
11,904 KB
testcase_21 AC 31 ms
12,032 KB
testcase_22 AC 39 ms
12,928 KB
testcase_23 AC 49 ms
16,248 KB
testcase_24 AC 77 ms
18,604 KB
testcase_25 AC 75 ms
21,224 KB
testcase_26 AC 93 ms
21,476 KB
testcase_27 AC 53 ms
21,476 KB
testcase_28 AC 55 ms
21,348 KB
testcase_29 AC 91 ms
21,600 KB
testcase_30 AC 91 ms
21,348 KB
testcase_31 AC 70 ms
20,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = sorted(map(int, input().split()))

Z = 'NO'
Y = X[1] - X[0]
if Y != 0:
    for i in range(1, N-1):
        if X[i+1] - X[i] != Y:
            break
    else:
        Z ='YES'

print(Z)
0