結果

問題 No.406 鴨等間隔の法則
ユーザー SchneeSchnee
提出日時 2021-12-16 16:03:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,812 KB
最終ジャッジ日時 2024-09-13 12:53:03
合計ジャッジ時間 4,775 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
16,976 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 92 ms
22,584 KB
testcase_05 AC 51 ms
16,900 KB
testcase_06 AC 53 ms
16,004 KB
testcase_07 AC 53 ms
17,080 KB
testcase_08 AC 90 ms
23,136 KB
testcase_09 AC 98 ms
23,556 KB
testcase_10 AC 55 ms
16,664 KB
testcase_11 AC 77 ms
18,944 KB
testcase_12 AC 62 ms
17,728 KB
testcase_13 AC 59 ms
16,192 KB
testcase_14 AC 106 ms
22,740 KB
testcase_15 AC 31 ms
11,264 KB
testcase_16 AC 35 ms
12,288 KB
testcase_17 AC 32 ms
11,392 KB
testcase_18 AC 35 ms
12,280 KB
testcase_19 AC 36 ms
12,288 KB
testcase_20 AC 39 ms
12,672 KB
testcase_21 AC 39 ms
12,752 KB
testcase_22 AC 49 ms
15,632 KB
testcase_23 AC 64 ms
18,104 KB
testcase_24 AC 86 ms
18,564 KB
testcase_25 AC 98 ms
23,648 KB
testcase_26 AC 112 ms
23,812 KB
testcase_27 AC 67 ms
21,776 KB
testcase_28 AC 75 ms
23,460 KB
testcase_29 AC 114 ms
23,092 KB
testcase_30 AC 115 ms
23,656 KB
testcase_31 AC 96 ms
23,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=sorted(map(int,input().split()))
if n != len(set(s)):
    print("NO")
else:
    a=[s[i+1]-s[i]for i in range(n-1)]
    print("YNEOS"[len(set(a))!=1::2])
0