結果

問題 No.406 鴨等間隔の法則
ユーザー hiro1729hiro1729
提出日時 2024-09-09 19:50:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,620 KB
実行使用メモリ 103,632 KB
最終ジャッジ日時 2024-09-09 19:50:43
合計ジャッジ時間 4,542 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
79,152 KB
testcase_01 AC 37 ms
53,360 KB
testcase_02 AC 36 ms
52,208 KB
testcase_03 AC 37 ms
52,964 KB
testcase_04 AC 90 ms
97,520 KB
testcase_05 AC 59 ms
74,392 KB
testcase_06 AC 59 ms
74,644 KB
testcase_07 AC 60 ms
75,820 KB
testcase_08 AC 89 ms
97,292 KB
testcase_09 AC 94 ms
101,848 KB
testcase_10 AC 62 ms
78,084 KB
testcase_11 AC 81 ms
93,156 KB
testcase_12 AC 67 ms
82,232 KB
testcase_13 AC 66 ms
83,384 KB
testcase_14 AC 86 ms
95,524 KB
testcase_15 AC 39 ms
58,908 KB
testcase_16 AC 44 ms
63,164 KB
testcase_17 AC 41 ms
61,144 KB
testcase_18 AC 43 ms
63,924 KB
testcase_19 AC 44 ms
63,704 KB
testcase_20 AC 47 ms
63,896 KB
testcase_21 AC 49 ms
66,876 KB
testcase_22 AC 52 ms
68,368 KB
testcase_23 AC 69 ms
83,828 KB
testcase_24 AC 79 ms
92,632 KB
testcase_25 AC 96 ms
102,164 KB
testcase_26 AC 94 ms
102,072 KB
testcase_27 AC 59 ms
82,688 KB
testcase_28 AC 81 ms
103,632 KB
testcase_29 AC 94 ms
101,612 KB
testcase_30 AC 93 ms
101,412 KB
testcase_31 AC 93 ms
102,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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