結果

問題 No.406 鴨等間隔の法則
ユーザー akasatanananaakasatananana
提出日時 2019-09-18 23:42:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 271 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,712 KB
最終ジャッジ日時 2024-07-17 23:04:53
合計ジャッジ時間 4,796 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
20,584 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 82 ms
20,456 KB
testcase_05 AC 46 ms
14,344 KB
testcase_06 AC 48 ms
14,608 KB
testcase_07 AC 51 ms
14,528 KB
testcase_08 AC 82 ms
21,032 KB
testcase_09 AC 90 ms
21,416 KB
testcase_10 AC 49 ms
15,192 KB
testcase_11 AC 75 ms
18,900 KB
testcase_12 AC 57 ms
16,136 KB
testcase_13 AC 53 ms
15,624 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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