結果

問題 No.406 鴨等間隔の法則
ユーザー kimiyukikimiyuki
提出日時 2016-10-08 02:19:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 23,736 KB
最終ジャッジ日時 2024-07-07 11:50:37
合計ジャッジ時間 2,882 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
16,744 KB
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 79 ms
22,440 KB
testcase_05 AC 44 ms
16,756 KB
testcase_06 AC 45 ms
16,120 KB
testcase_07 AC 45 ms
17,072 KB
testcase_08 AC 89 ms
23,028 KB
testcase_09 AC 87 ms
23,480 KB
testcase_10 AC 49 ms
16,500 KB
testcase_11 AC 70 ms
18,940 KB
testcase_12 AC 55 ms
17,584 KB
testcase_13 AC 50 ms
17,056 KB
testcase_14 AC 81 ms
22,588 KB
testcase_15 AC 28 ms
11,136 KB
testcase_16 AC 31 ms
12,032 KB
testcase_17 AC 27 ms
11,264 KB
testcase_18 AC 28 ms
12,032 KB
testcase_19 AC 29 ms
12,288 KB
testcase_20 AC 32 ms
12,416 KB
testcase_21 AC 34 ms
12,612 KB
testcase_22 AC 41 ms
15,492 KB
testcase_23 AC 55 ms
16,964 KB
testcase_24 AC 69 ms
18,676 KB
testcase_25 AC 85 ms
23,456 KB
testcase_26 AC 89 ms
22,884 KB
testcase_27 AC 56 ms
21,604 KB
testcase_28 AC 65 ms
23,504 KB
testcase_29 AC 92 ms
23,736 KB
testcase_30 AC 91 ms
23,668 KB
testcase_31 AC 84 ms
22,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import operator
n = int(input())
x = sorted(map(int,input().split()))
print(['NO', 'YES'][len(set(x)) == n and len(set(map(operator.sub, x, x[1:]))) == 1])
0