結果

問題 No.406 鴨等間隔の法則
ユーザー akasatanananaakasatananana
提出日時 2019-09-18 23:45:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,868 KB
最終ジャッジ日時 2024-07-17 23:10:52
合計ジャッジ時間 3,554 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
15,288 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 92 ms
20,440 KB
testcase_05 AC 52 ms
14,208 KB
testcase_06 AC 54 ms
14,340 KB
testcase_07 AC 53 ms
14,520 KB
testcase_08 AC 92 ms
21,020 KB
testcase_09 AC 97 ms
21,284 KB
testcase_10 AC 57 ms
14,928 KB
testcase_11 AC 80 ms
18,944 KB
testcase_12 AC 65 ms
15,996 KB
testcase_13 AC 60 ms
15,616 KB
testcase_14 AC 113 ms
19,496 KB
testcase_15 WA -
testcase_16 AC 34 ms
11,392 KB
testcase_17 AC 31 ms
11,136 KB
testcase_18 AC 33 ms
11,392 KB
testcase_19 AC 37 ms
11,520 KB
testcase_20 AC 41 ms
12,032 KB
testcase_21 AC 38 ms
11,904 KB
testcase_22 AC 50 ms
13,064 KB
testcase_23 AC 65 ms
16,512 KB
testcase_24 AC 100 ms
18,744 KB
testcase_25 AC 99 ms
21,360 KB
testcase_26 AC 130 ms
21,868 KB
testcase_27 WA -
testcase_28 AC 75 ms
21,484 KB
testcase_29 AC 128 ms
21,612 KB
testcase_30 AC 126 ms
21,484 KB
testcase_31 AC 94 ms
21,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=int(input())
b=[int(i) for i in input().split()]
b.sort()
c=b[1]-b[0]
if b.count(b[0])>=2:
    print("NO")
for i in range(1,a):
    d=b[i]-b[i-1]
    if c!=d:
        print("NO")
        break
else:
    print("YES")
0