結果

問題 No.406 鴨等間隔の法則
ユーザー HirakeHirake
提出日時 2017-06-16 11:10:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 210 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,748 KB
最終ジャッジ日時 2024-11-07 10:34:51
合計ジャッジ時間 3,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
14,944 KB
testcase_01 RE -
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 87 ms
20,448 KB
testcase_05 AC 51 ms
14,212 KB
testcase_06 AC 51 ms
14,212 KB
testcase_07 AC 52 ms
14,516 KB
testcase_08 AC 88 ms
20,892 KB
testcase_09 AC 93 ms
21,288 KB
testcase_10 AC 55 ms
14,800 KB
testcase_11 AC 78 ms
18,888 KB
testcase_12 AC 60 ms
16,000 KB
testcase_13 AC 58 ms
15,612 KB
testcase_14 RE -
testcase_15 AC 30 ms
11,264 KB
testcase_16 AC 32 ms
11,520 KB
testcase_17 AC 32 ms
10,880 KB
testcase_18 AC 33 ms
11,520 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 36 ms
12,032 KB
testcase_22 RE -
testcase_23 AC 63 ms
16,512 KB
testcase_24 RE -
testcase_25 AC 95 ms
21,364 KB
testcase_26 RE -
testcase_27 AC 69 ms
21,748 KB
testcase_28 AC 73 ms
21,488 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 91 ms
21,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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