結果

問題 No.406 鴨等間隔の法則
ユーザー takakintakakin
提出日時 2020-03-30 17:36:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,616 KB
最終ジャッジ日時 2024-07-07 13:05:59
合計ジャッジ時間 3,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
15,160 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 87 ms
20,192 KB
testcase_05 AC 50 ms
14,204 KB
testcase_06 AC 49 ms
14,344 KB
testcase_07 AC 50 ms
14,520 KB
testcase_08 AC 84 ms
20,636 KB
testcase_09 AC 91 ms
21,328 KB
testcase_10 AC 53 ms
14,800 KB
testcase_11 AC 76 ms
18,820 KB
testcase_12 AC 58 ms
15,996 KB
testcase_13 AC 56 ms
15,360 KB
testcase_14 AC 103 ms
19,372 KB
testcase_15 AC 31 ms
11,136 KB
testcase_16 AC 33 ms
11,264 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 32 ms
11,392 KB
testcase_19 AC 35 ms
11,392 KB
testcase_20 AC 38 ms
11,776 KB
testcase_21 AC 36 ms
11,776 KB
testcase_22 AC 48 ms
13,064 KB
testcase_23 AC 63 ms
16,256 KB
testcase_24 AC 96 ms
18,612 KB
testcase_25 AC 90 ms
21,360 KB
testcase_26 AC 117 ms
21,480 KB
testcase_27 AC 69 ms
21,616 KB
testcase_28 AC 68 ms
21,232 KB
testcase_29 AC 118 ms
21,480 KB
testcase_30 AC 116 ms
21,488 KB
testcase_31 AC 89 ms
20,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
X=sorted([int(i) for i in input().split()])
d=X[1]-X[0]
if d==0:
  print("NO")
else:
  for i in range(n-2):
    if d==X[i+2]-X[i+1]:
      continue
    else:
      print("NO")
      break
  else:
    print("YES")

0