結果

問題 No.406 鴨等間隔の法則
ユーザー 👑 NachiaNachia
提出日時 2021-05-09 14:44:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,168 KB
最終ジャッジ日時 2024-09-18 20:51:52
合計ジャッジ時間 3,326 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
70,912 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 81 ms
84,480 KB
testcase_05 AC 59 ms
68,352 KB
testcase_06 AC 57 ms
69,248 KB
testcase_07 AC 58 ms
69,760 KB
testcase_08 AC 79 ms
83,840 KB
testcase_09 AC 83 ms
86,784 KB
testcase_10 AC 64 ms
70,784 KB
testcase_11 AC 80 ms
80,896 KB
testcase_12 AC 68 ms
72,832 KB
testcase_13 AC 66 ms
73,216 KB
testcase_14 AC 77 ms
81,536 KB
testcase_15 AC 42 ms
59,776 KB
testcase_16 AC 44 ms
60,928 KB
testcase_17 AC 44 ms
59,648 KB
testcase_18 AC 44 ms
61,184 KB
testcase_19 AC 44 ms
60,160 KB
testcase_20 AC 45 ms
61,312 KB
testcase_21 AC 47 ms
62,848 KB
testcase_22 AC 50 ms
64,384 KB
testcase_23 AC 64 ms
74,240 KB
testcase_24 AC 75 ms
79,232 KB
testcase_25 AC 82 ms
86,656 KB
testcase_26 AC 83 ms
86,400 KB
testcase_27 AC 67 ms
84,864 KB
testcase_28 AC 71 ms
87,168 KB
testcase_29 AC 81 ms
86,272 KB
testcase_30 AC 83 ms
85,760 KB
testcase_31 AC 86 ms
85,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = sorted([int(a) for a in input().split()])
D = set([r-l for l,r in zip(X[:-1],X[1:])])
print("YES" if len(D) == 1 and 0 not in D else "NO")
0