結果

問題 No.406 鴨等間隔の法則
ユーザー indiana_shima7indiana_shima7
提出日時 2016-08-08 09:45:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,856 KB
最終ジャッジ日時 2024-11-07 05:05:28
合計ジャッジ時間 3,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
15,152 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 129 ms
20,444 KB
testcase_05 AC 62 ms
14,208 KB
testcase_06 AC 65 ms
14,336 KB
testcase_07 AC 65 ms
14,520 KB
testcase_08 AC 124 ms
20,892 KB
testcase_09 AC 135 ms
21,288 KB
testcase_10 AC 68 ms
14,920 KB
testcase_11 AC 110 ms
19,064 KB
testcase_12 AC 81 ms
16,120 KB
testcase_13 AC 77 ms
15,620 KB
testcase_14 AC 96 ms
19,624 KB
testcase_15 WA -
testcase_16 AC 36 ms
11,392 KB
testcase_17 AC 34 ms
11,008 KB
testcase_18 AC 35 ms
11,392 KB
testcase_19 AC 36 ms
11,648 KB
testcase_20 AC 38 ms
12,032 KB
testcase_21 AC 42 ms
11,904 KB
testcase_22 AC 48 ms
12,920 KB
testcase_23 AC 84 ms
16,376 KB
testcase_24 AC 93 ms
18,552 KB
testcase_25 AC 136 ms
21,360 KB
testcase_26 AC 113 ms
21,600 KB
testcase_27 WA -
testcase_28 AC 104 ms
21,484 KB
testcase_29 AC 113 ms
21,604 KB
testcase_30 AC 112 ms
21,472 KB
testcase_31 AC 129 ms
20,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

diff=A[1]-A[0]
isKamo=1
for n in range(len(A)-1):
    if diff != (A[n+1] - A[n]) and A[n+1] != A[n]:
        isKamo = 0

print("YES" if isKamo else "NO")
0