結果

問題 No.406 鴨等間隔の法則
ユーザー picares9uepicares9ue
提出日時 2016-12-13 23:33:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 222 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,600 KB
最終ジャッジ日時 2024-11-07 06:52:59
合計ジャッジ時間 3,520 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
15,276 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 106 ms
20,312 KB
testcase_05 AC 55 ms
15,092 KB
testcase_06 AC 57 ms
14,340 KB
testcase_07 AC 57 ms
15,128 KB
testcase_08 AC 102 ms
20,756 KB
testcase_09 AC 107 ms
21,280 KB
testcase_10 AC 62 ms
14,916 KB
testcase_11 AC 92 ms
18,940 KB
testcase_12 AC 70 ms
15,856 KB
testcase_13 AC 67 ms
15,512 KB
testcase_14 AC 98 ms
19,364 KB
testcase_15 WA -
testcase_16 AC 36 ms
12,160 KB
testcase_17 AC 33 ms
11,136 KB
testcase_18 AC 36 ms
12,032 KB
testcase_19 AC 36 ms
11,520 KB
testcase_20 AC 39 ms
12,032 KB
testcase_21 AC 40 ms
12,672 KB
testcase_22 AC 46 ms
13,056 KB
testcase_23 AC 71 ms
16,372 KB
testcase_24 AC 84 ms
18,420 KB
testcase_25 AC 109 ms
21,288 KB
testcase_26 AC 102 ms
21,600 KB
testcase_27 WA -
testcase_28 AC 85 ms
21,404 KB
testcase_29 AC 108 ms
21,600 KB
testcase_30 AC 108 ms
21,344 KB
testcase_31 AC 110 ms
20,772 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(lis) == N and len(sa) == 1:
    print("YES")
else:
    print("NO")
0