結果

問題 No.406 鴨等間隔の法則
ユーザー j0tdj0td
提出日時 2018-01-16 19:27:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,448 KB
最終ジャッジ日時 2024-07-07 12:18:56
合計ジャッジ時間 4,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
16,880 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 129 ms
22,512 KB
testcase_05 AC 61 ms
16,780 KB
testcase_06 AC 65 ms
16,144 KB
testcase_07 AC 66 ms
17,216 KB
testcase_08 AC 123 ms
22,560 KB
testcase_09 AC 141 ms
24,068 KB
testcase_10 AC 68 ms
16,744 KB
testcase_11 AC 109 ms
18,820 KB
testcase_12 AC 79 ms
17,604 KB
testcase_13 AC 77 ms
17,188 KB
testcase_14 AC 110 ms
22,660 KB
testcase_15 AC 31 ms
11,264 KB
testcase_16 AC 34 ms
12,032 KB
testcase_17 AC 30 ms
11,136 KB
testcase_18 AC 33 ms
12,032 KB
testcase_19 AC 34 ms
12,160 KB
testcase_20 AC 36 ms
12,544 KB
testcase_21 AC 40 ms
12,544 KB
testcase_22 AC 50 ms
15,512 KB
testcase_23 AC 80 ms
17,112 KB
testcase_24 AC 100 ms
18,616 KB
testcase_25 AC 138 ms
23,560 KB
testcase_26 AC 121 ms
24,416 KB
testcase_27 AC 91 ms
22,268 KB
testcase_28 AC 109 ms
23,520 KB
testcase_29 AC 124 ms
24,372 KB
testcase_30 AC 122 ms
24,448 KB
testcase_31 AC 132 ms
23,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

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

KAMO_SET = set(KAMO)

DIST = abs(KAMO[0] - KAMO[1])

flag = True

if len(KAMO) != len(KAMO_SET):
    flag = False

for i in range(2, len(KAMO)):
    if abs(KAMO[i] - KAMO[i - 1]) != DIST:
        flag = False

if flag == False:
    print('NO')
else:
    print('YES')
0