結果

問題 No.406 鴨等間隔の法則
ユーザー 👑 NachiaNachia
提出日時 2021-05-09 14:43:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 81,736 KB
実行使用メモリ 86,656 KB
最終ジャッジ日時 2024-09-18 20:51:14
合計ジャッジ時間 3,384 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
71,424 KB
testcase_01 AC 35 ms
51,328 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 WA -
testcase_04 AC 78 ms
83,968 KB
testcase_05 AC 53 ms
68,864 KB
testcase_06 AC 55 ms
69,760 KB
testcase_07 AC 54 ms
70,400 KB
testcase_08 AC 76 ms
83,968 KB
testcase_09 AC 81 ms
86,656 KB
testcase_10 AC 56 ms
70,784 KB
testcase_11 AC 72 ms
81,280 KB
testcase_12 AC 60 ms
73,088 KB
testcase_13 AC 59 ms
72,832 KB
testcase_14 AC 74 ms
82,816 KB
testcase_15 WA -
testcase_16 AC 44 ms
61,312 KB
testcase_17 AC 42 ms
59,648 KB
testcase_18 AC 41 ms
61,184 KB
testcase_19 AC 44 ms
60,416 KB
testcase_20 AC 44 ms
61,568 KB
testcase_21 AC 46 ms
62,592 KB
testcase_22 AC 50 ms
64,640 KB
testcase_23 AC 67 ms
74,608 KB
testcase_24 AC 75 ms
79,764 KB
testcase_25 AC 86 ms
86,608 KB
testcase_26 AC 83 ms
85,888 KB
testcase_27 WA -
testcase_28 AC 66 ms
86,528 KB
testcase_29 AC 80 ms
85,888 KB
testcase_30 AC 81 ms
86,400 KB
testcase_31 AC 82 ms
86,016 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 else "NO")
0