結果

問題 No.406 鴨等間隔の法則
ユーザー akitsugu777akitsugu777
提出日時 2021-02-03 14:59:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 790 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 21,604 KB
最終ジャッジ日時 2024-06-30 01:23:09
合計ジャッジ時間 3,816 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
15,404 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 81 ms
20,308 KB
testcase_05 AC 46 ms
14,192 KB
testcase_06 AC 47 ms
14,452 KB
testcase_07 AC 49 ms
14,636 KB
testcase_08 AC 82 ms
20,884 KB
testcase_09 AC 85 ms
21,276 KB
testcase_10 AC 50 ms
15,040 KB
testcase_11 AC 69 ms
19,056 KB
testcase_12 AC 55 ms
16,084 KB
testcase_13 AC 54 ms
15,612 KB
testcase_14 AC 99 ms
19,616 KB
testcase_15 WA -
testcase_16 AC 32 ms
11,392 KB
testcase_17 AC 29 ms
10,880 KB
testcase_18 AC 32 ms
11,392 KB
testcase_19 AC 36 ms
11,520 KB
testcase_20 AC 38 ms
12,032 KB
testcase_21 AC 34 ms
12,032 KB
testcase_22 AC 45 ms
12,928 KB
testcase_23 AC 58 ms
16,376 KB
testcase_24 AC 86 ms
18,672 KB
testcase_25 AC 85 ms
21,348 KB
testcase_26 AC 106 ms
21,600 KB
testcase_27 WA -
testcase_28 AC 64 ms
21,344 KB
testcase_29 AC 109 ms
21,604 KB
testcase_30 AC 109 ms
21,468 KB
testcase_31 AC 83 ms
20,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = sorted(map(int, input().split()))

Y = X[1] - X[0]
for i in range(1, N-1):
    if X[i+1] - X[i] != Y:
        print('NO')
        break
else:
    print('YES')
0