結果

問題 No.406 鴨等間隔の法則
ユーザー tabataba
提出日時 2017-04-03 02:54:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,628 KB
最終ジャッジ日時 2024-07-07 12:00:59
合計ジャッジ時間 3,607 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
17,004 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 98 ms
22,572 KB
testcase_05 AC 56 ms
16,884 KB
testcase_06 AC 55 ms
16,120 KB
testcase_07 AC 58 ms
17,192 KB
testcase_08 AC 107 ms
23,100 KB
testcase_09 AC 114 ms
23,424 KB
testcase_10 AC 60 ms
16,616 KB
testcase_11 AC 88 ms
19,180 KB
testcase_12 AC 67 ms
17,708 KB
testcase_13 AC 66 ms
17,292 KB
testcase_14 AC 94 ms
22,756 KB
testcase_15 AC 29 ms
11,392 KB
testcase_16 AC 32 ms
12,160 KB
testcase_17 AC 29 ms
11,136 KB
testcase_18 AC 33 ms
12,160 KB
testcase_19 AC 32 ms
12,416 KB
testcase_20 AC 36 ms
12,672 KB
testcase_21 AC 37 ms
12,544 KB
testcase_22 AC 43 ms
15,616 KB
testcase_23 AC 71 ms
17,088 KB
testcase_24 AC 76 ms
18,504 KB
testcase_25 AC 112 ms
23,596 KB
testcase_26 AC 100 ms
22,836 KB
testcase_27 AC 64 ms
21,852 KB
testcase_28 AC 88 ms
23,576 KB
testcase_29 AC 102 ms
22,868 KB
testcase_30 AC 101 ms
23,628 KB
testcase_31 AC 109 ms
22,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
x=sorted(map(int,input().split()))
print(["NO","YES"][x==sorted(set(x))==list(range(x[0],x[-1]+1,x[1]-x[0]))])
0