結果

問題 No.406 鴨等間隔の法則
ユーザー Haruki0804SHaruki0804S
提出日時 2018-10-28 22:06:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 360 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,320 KB
最終ジャッジ日時 2024-11-19 07:22:33
合計ジャッジ時間 82,188 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 31 ms
17,568 KB
testcase_02 AC 30 ms
17,700 KB
testcase_03 AC 31 ms
17,444 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 694 ms
17,952 KB
testcase_16 AC 1,237 ms
18,208 KB
testcase_17 AC 339 ms
17,824 KB
testcase_18 AC 1,333 ms
22,912 KB
testcase_19 AC 1,904 ms
18,080 KB
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(' ')

for i in range(N):
    X[i]=int(X[i])




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[i+1])-int(Y[i])):
           print('NO')
           break
        if ( i == N-2 ):
           print('YES')


0