結果

問題 No.406 鴨等間隔の法則
ユーザー akitsugu777akitsugu777
提出日時 2019-10-01 16:37:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,728 KB
最終ジャッジ日時 2024-07-07 12:42:46
合計ジャッジ時間 3,350 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
15,340 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 108 ms
20,312 KB
testcase_05 AC 59 ms
15,092 KB
testcase_06 AC 57 ms
14,332 KB
testcase_07 AC 59 ms
16,044 KB
testcase_08 AC 110 ms
20,920 KB
testcase_09 AC 121 ms
21,276 KB
testcase_10 AC 63 ms
15,108 KB
testcase_11 AC 97 ms
18,936 KB
testcase_12 AC 71 ms
16,428 KB
testcase_13 AC 68 ms
15,612 KB
testcase_14 AC 100 ms
19,492 KB
testcase_15 AC 28 ms
11,136 KB
testcase_16 AC 31 ms
12,032 KB
testcase_17 AC 27 ms
11,136 KB
testcase_18 AC 31 ms
12,160 KB
testcase_19 AC 33 ms
11,648 KB
testcase_20 AC 34 ms
11,904 KB
testcase_21 AC 36 ms
12,544 KB
testcase_22 AC 44 ms
13,188 KB
testcase_23 AC 76 ms
16,432 KB
testcase_24 AC 86 ms
18,544 KB
testcase_25 AC 123 ms
21,348 KB
testcase_26 AC 112 ms
21,600 KB
testcase_27 AC 88 ms
21,600 KB
testcase_28 AC 95 ms
21,212 KB
testcase_29 AC 108 ms
21,728 KB
testcase_30 AC 111 ms
21,600 KB
testcase_31 AC 116 ms
20,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = sorted(map(int, input().split()))

L = []
for i in range(N-1):
    L += [x[i+1] - x[i]]
L = set(L)

print(['NO', 'YES'][len(L) == 1 and L != {0}])
0