結果

問題 No.406 鴨等間隔の法則
ユーザー daku9640daku9640
提出日時 2018-03-20 00:13:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,704 KB
最終ジャッジ日時 2024-07-07 12:22:11
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
16,224 KB
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 25 ms
10,368 KB
testcase_03 AC 25 ms
10,368 KB
testcase_04 AC 84 ms
22,364 KB
testcase_05 AC 47 ms
16,756 KB
testcase_06 AC 48 ms
15,812 KB
testcase_07 AC 46 ms
16,900 KB
testcase_08 AC 81 ms
22,268 KB
testcase_09 AC 87 ms
23,120 KB
testcase_10 AC 49 ms
16,368 KB
testcase_11 AC 71 ms
18,816 KB
testcase_12 AC 55 ms
17,148 KB
testcase_13 AC 52 ms
17,060 KB
testcase_14 AC 91 ms
22,636 KB
testcase_15 AC 28 ms
11,136 KB
testcase_16 AC 30 ms
11,780 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 AC 32 ms
11,904 KB
testcase_19 AC 33 ms
12,160 KB
testcase_20 AC 36 ms
12,544 KB
testcase_21 AC 37 ms
12,352 KB
testcase_22 AC 42 ms
15,492 KB
testcase_23 AC 56 ms
17,712 KB
testcase_24 AC 77 ms
18,292 KB
testcase_25 AC 87 ms
23,340 KB
testcase_26 AC 98 ms
23,704 KB
testcase_27 AC 60 ms
21,472 KB
testcase_28 AC 64 ms
23,484 KB
testcase_29 AC 98 ms
22,660 KB
testcase_30 AC 98 ms
23,588 KB
testcase_31 AC 85 ms
22,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = tuple(sorted(map(int, input().split())))
print("YES" if len(set(x)) == n and len(set(x[i + 1] - x[i] for i in range(n - 1))) == 1 else "NO")
0