結果

問題 No.406 鴨等間隔の法則
ユーザー picares9uepicares9ue
提出日時 2016-12-14 22:35:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,208 KB
最終ジャッジ日時 2024-07-07 11:56:06
合計ジャッジ時間 3,242 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
17,008 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 99 ms
23,044 KB
testcase_05 AC 52 ms
17,528 KB
testcase_06 AC 53 ms
16,588 KB
testcase_07 AC 59 ms
17,684 KB
testcase_08 AC 96 ms
23,120 KB
testcase_09 AC 107 ms
24,208 KB
testcase_10 AC 57 ms
17,024 KB
testcase_11 AC 86 ms
18,936 KB
testcase_12 AC 64 ms
17,556 KB
testcase_13 AC 63 ms
17,696 KB
testcase_14 AC 87 ms
22,908 KB
testcase_15 AC 28 ms
11,008 KB
testcase_16 AC 31 ms
12,160 KB
testcase_17 AC 28 ms
11,008 KB
testcase_18 AC 30 ms
12,412 KB
testcase_19 AC 30 ms
12,160 KB
testcase_20 AC 33 ms
12,416 KB
testcase_21 AC 35 ms
12,800 KB
testcase_22 AC 44 ms
15,360 KB
testcase_23 AC 65 ms
17,100 KB
testcase_24 AC 74 ms
18,296 KB
testcase_25 AC 107 ms
24,116 KB
testcase_26 AC 97 ms
24,168 KB
testcase_27 AC 75 ms
21,472 KB
testcase_28 AC 84 ms
24,064 KB
testcase_29 AC 104 ms
24,060 KB
testcase_30 AC 103 ms
23,796 KB
testcase_31 AC 100 ms
23,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ソートし忘れてた
#重複がある場合を考えてなかった
import operator
N, lis = int(input()), sorted([int(i) for i in input().split()])
sa = set(map(operator.sub, lis, lis[1:]))
if len(set(lis)) == N and len(sa) == 1:
    print("YES")
else:
    print("NO")
0