結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
15,104 KB
testcase_01 WA -
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 90 ms
20,444 KB
testcase_05 AC 51 ms
14,336 KB
testcase_06 AC 53 ms
14,468 KB
testcase_07 AC 54 ms
14,648 KB
testcase_08 AC 90 ms
21,016 KB
testcase_09 AC 96 ms
21,412 KB
testcase_10 AC 55 ms
15,056 KB
testcase_11 AC 81 ms
19,208 KB
testcase_12 AC 62 ms
16,124 KB
testcase_13 AC 61 ms
15,744 KB
testcase_14 WA -
testcase_15 AC 32 ms
11,392 KB
testcase_16 AC 34 ms
11,520 KB
testcase_17 AC 33 ms
11,008 KB
testcase_18 AC 34 ms
11,520 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 37 ms
12,160 KB
testcase_22 WA -
testcase_23 AC 65 ms
16,392 KB
testcase_24 WA -
testcase_25 AC 96 ms
21,488 KB
testcase_26 WA -
testcase_27 AC 74 ms
21,720 KB
testcase_28 AC 73 ms
21,392 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 94 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<len(x)-3:
    i+=1
if i==len(x)-2:
    print("YES")
else:
    print("NO")
0