結果

問題 No.406 鴨等間隔の法則
ユーザー HirakeHirake
提出日時 2017-06-16 11:23:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,628 KB
最終ジャッジ日時 2024-07-07 12:05:06
合計ジャッジ時間 3,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
14,812 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 92 ms
20,060 KB
testcase_05 AC 49 ms
13,952 KB
testcase_06 AC 49 ms
14,216 KB
testcase_07 AC 50 ms
14,520 KB
testcase_08 AC 83 ms
20,764 KB
testcase_09 AC 90 ms
21,168 KB
testcase_10 AC 50 ms
14,924 KB
testcase_11 AC 73 ms
18,892 KB
testcase_12 AC 58 ms
15,996 KB
testcase_13 AC 55 ms
15,612 KB
testcase_14 AC 131 ms
19,372 KB
testcase_15 AC 30 ms
11,264 KB
testcase_16 AC 32 ms
11,136 KB
testcase_17 AC 29 ms
11,008 KB
testcase_18 AC 32 ms
11,392 KB
testcase_19 AC 37 ms
11,520 KB
testcase_20 AC 41 ms
11,776 KB
testcase_21 AC 35 ms
11,904 KB
testcase_22 AC 54 ms
12,684 KB
testcase_23 AC 61 ms
16,392 KB
testcase_24 AC 117 ms
18,300 KB
testcase_25 AC 90 ms
21,232 KB
testcase_26 AC 156 ms
21,488 KB
testcase_27 AC 71 ms
21,496 KB
testcase_28 AC 69 ms
21,232 KB
testcase_29 AC 151 ms
21,628 KB
testcase_30 AC 152 ms
21,236 KB
testcase_31 AC 87 ms
20,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# your code goes here
#406 birds same distance
N=int(input())
x=[int(i) for i in input().split()]
x.sort()
#print(x)
i=0
while  i<N-2 and x[i+1]-x[i]!=0 and x[i+2]-x[i+1]==x[i+1]-x[i]:
 #   print(x[i+2])
    i+=1
if i==N-2:
    print("YES")
else:
    print("NO")
0