結果

問題 No.406 鴨等間隔の法則
ユーザー MaboyMaboy
提出日時 2018-02-18 22:50:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,960 KB
最終ジャッジ日時 2024-07-07 12:20:02
合計ジャッジ時間 3,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
16,484 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 24 ms
10,496 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 82 ms
22,528 KB
testcase_05 AC 46 ms
16,892 KB
testcase_06 AC 48 ms
16,960 KB
testcase_07 AC 49 ms
16,760 KB
testcase_08 AC 99 ms
22,440 KB
testcase_09 AC 99 ms
23,960 KB
testcase_10 AC 49 ms
16,784 KB
testcase_11 AC 70 ms
19,044 KB
testcase_12 AC 56 ms
17,184 KB
testcase_13 AC 54 ms
17,432 KB
testcase_14 AC 86 ms
23,044 KB
testcase_15 AC 26 ms
11,264 KB
testcase_16 AC 30 ms
11,912 KB
testcase_17 AC 27 ms
11,136 KB
testcase_18 AC 30 ms
12,156 KB
testcase_19 AC 30 ms
12,160 KB
testcase_20 AC 31 ms
12,672 KB
testcase_21 AC 34 ms
12,544 KB
testcase_22 AC 41 ms
15,628 KB
testcase_23 AC 59 ms
16,808 KB
testcase_24 AC 70 ms
18,616 KB
testcase_25 AC 92 ms
23,848 KB
testcase_26 AC 95 ms
23,312 KB
testcase_27 AC 66 ms
21,740 KB
testcase_28 AC 70 ms
23,936 KB
testcase_29 AC 92 ms
23,224 KB
testcase_30 AC 89 ms
23,916 KB
testcase_31 AC 87 ms
23,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def d():
  if len(set(x))!=n:return "NO"
  s=set()
  a=x.pop()
  while x:
    b=x.pop()
    s.add(a-b)
    a=b
  return ("NO","YES")[len(s)==1]

n=int(input())
x=sorted([i for i in map(int,input().split())])
print(d())

0