結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
15,080 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 88 ms
20,460 KB
testcase_05 AC 48 ms
14,216 KB
testcase_06 AC 51 ms
14,352 KB
testcase_07 AC 49 ms
14,660 KB
testcase_08 AC 86 ms
21,156 KB
testcase_09 AC 93 ms
21,424 KB
testcase_10 AC 53 ms
14,936 KB
testcase_11 AC 77 ms
19,028 KB
testcase_12 AC 59 ms
16,008 KB
testcase_13 AC 58 ms
15,624 KB
testcase_14 AC 106 ms
19,640 KB
testcase_15 WA -
testcase_16 AC 30 ms
11,392 KB
testcase_17 AC 29 ms
11,008 KB
testcase_18 AC 31 ms
11,648 KB
testcase_19 AC 35 ms
11,776 KB
testcase_20 AC 38 ms
11,904 KB
testcase_21 AC 34 ms
12,032 KB
testcase_22 AC 47 ms
12,956 KB
testcase_23 AC 60 ms
16,360 KB
testcase_24 AC 94 ms
18,692 KB
testcase_25 AC 88 ms
21,500 KB
testcase_26 AC 121 ms
21,568 KB
testcase_27 WA -
testcase_28 AC 66 ms
21,500 KB
testcase_29 AC 116 ms
21,532 KB
testcase_30 AC 113 ms
21,532 KB
testcase_31 AC 83 ms
21,048 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):
    if i>=2:
        d=b[i]-b[i-1]
        if c!=d:
            print("NO")
            break
else:
    print("YES")
0