結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
15,284 KB
testcase_01 WA -
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 96 ms
20,324 KB
testcase_05 AC 50 ms
14,340 KB
testcase_06 AC 52 ms
14,220 KB
testcase_07 AC 53 ms
14,524 KB
testcase_08 AC 90 ms
21,024 KB
testcase_09 AC 99 ms
22,164 KB
testcase_10 AC 56 ms
15,264 KB
testcase_11 AC 81 ms
18,816 KB
testcase_12 AC 62 ms
15,872 KB
testcase_13 AC 60 ms
15,488 KB
testcase_14 WA -
testcase_15 AC 32 ms
11,136 KB
testcase_16 AC 34 ms
11,520 KB
testcase_17 AC 32 ms
11,008 KB
testcase_18 AC 32 ms
11,392 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 39 ms
12,032 KB
testcase_22 WA -
testcase_23 AC 66 ms
16,324 KB
testcase_24 WA -
testcase_25 AC 98 ms
21,108 KB
testcase_26 WA -
testcase_27 AC 74 ms
22,392 KB
testcase_28 AC 75 ms
21,364 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 95 ms
21,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=int(input())
b=[int(i) for i in input().split()]
b.sort()

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