結果

問題 No.406 鴨等間隔の法則
ユーザー naoe123naoe123
提出日時 2020-01-11 09:50:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,548 KB
最終ジャッジ日時 2024-07-07 12:46:02
合計ジャッジ時間 3,173 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
16,868 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 81 ms
22,432 KB
testcase_05 AC 48 ms
16,780 KB
testcase_06 AC 48 ms
16,912 KB
testcase_07 AC 47 ms
17,228 KB
testcase_08 AC 81 ms
22,516 KB
testcase_09 AC 84 ms
24,144 KB
testcase_10 AC 47 ms
16,980 KB
testcase_11 AC 70 ms
19,072 KB
testcase_12 AC 53 ms
17,584 KB
testcase_13 AC 50 ms
17,280 KB
testcase_14 AC 94 ms
22,700 KB
testcase_15 AC 29 ms
11,264 KB
testcase_16 AC 28 ms
12,160 KB
testcase_17 AC 27 ms
11,264 KB
testcase_18 AC 28 ms
12,032 KB
testcase_19 AC 30 ms
12,288 KB
testcase_20 AC 33 ms
12,416 KB
testcase_21 AC 32 ms
12,672 KB
testcase_22 AC 42 ms
15,640 KB
testcase_23 AC 56 ms
18,116 KB
testcase_24 AC 82 ms
18,616 KB
testcase_25 AC 88 ms
23,572 KB
testcase_26 AC 102 ms
24,548 KB
testcase_27 AC 59 ms
22,272 KB
testcase_28 AC 64 ms
23,504 KB
testcase_29 AC 104 ms
24,272 KB
testcase_30 AC 104 ms
24,400 KB
testcase_31 AC 83 ms
23,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
x=list(map(int,input().split()))

def has_duplicates(seq):
    return len(seq) != len(set(seq))

x.sort()
flag=True
if has_duplicates(x):
    print('NO')
else:
    d=x[1]-x[0]
    for i in range(N-1):
        if x[i+1]-x[i]!=d:
            flag=False
            break
    if flag:
        print('YES')
    else:
        print('NO')

0