結果

問題 No.406 鴨等間隔の法則
ユーザー rocoderrocoder
提出日時 2017-06-16 22:04:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,620 KB
最終ジャッジ日時 2024-07-07 12:06:15
合計ジャッジ時間 3,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
14,940 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 84 ms
20,192 KB
testcase_05 AC 46 ms
14,084 KB
testcase_06 AC 44 ms
14,212 KB
testcase_07 AC 45 ms
14,388 KB
testcase_08 AC 79 ms
20,764 KB
testcase_09 AC 81 ms
21,160 KB
testcase_10 AC 47 ms
14,932 KB
testcase_11 AC 70 ms
18,768 KB
testcase_12 AC 54 ms
15,868 KB
testcase_13 AC 49 ms
15,360 KB
testcase_14 AC 125 ms
19,372 KB
testcase_15 AC 27 ms
11,264 KB
testcase_16 AC 28 ms
11,136 KB
testcase_17 AC 26 ms
11,008 KB
testcase_18 AC 28 ms
11,264 KB
testcase_19 AC 34 ms
11,520 KB
testcase_20 AC 38 ms
11,904 KB
testcase_21 AC 31 ms
11,904 KB
testcase_22 AC 49 ms
12,684 KB
testcase_23 AC 54 ms
16,392 KB
testcase_24 AC 112 ms
18,424 KB
testcase_25 AC 83 ms
21,232 KB
testcase_26 AC 141 ms
21,620 KB
testcase_27 AC 67 ms
21,488 KB
testcase_28 AC 62 ms
21,232 KB
testcase_29 AC 137 ms
21,612 KB
testcase_30 AC 133 ms
21,364 KB
testcase_31 AC 81 ms
20,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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