結果

問題 No.406 鴨等間隔の法則
ユーザー Haruki0804SHaruki0804S
提出日時 2018-10-23 21:06:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 316 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,924 KB
最終ジャッジ日時 2024-11-19 04:46:49
合計ジャッジ時間 83,895 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 30 ms
15,872 KB
testcase_02 WA -
testcase_03 AC 30 ms
17,568 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 916 ms
22,656 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=input().split(' ')


Y=[]
for i in range(N):
    Y.append(max(X))
    X.remove(max(X))


d=int(Y[1])-int(Y[0])
if(d==0):
   print('NO')
else:
    for i in range(1,N-1):
        if (d != int(Y[1])-int(Y[0])):
           print('NO')
           break
        if ( i == N-2 ):
           print('YES')


0