結果

問題 No.406 鴨等間隔の法則
ユーザー shogo2022shogo2022
提出日時 2017-01-21 05:39:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 21,524 KB
最終ジャッジ日時 2024-07-07 11:56:26
合計ジャッジ時間 3,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
14,688 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 116 ms
20,320 KB
testcase_05 AC 59 ms
14,080 KB
testcase_06 AC 60 ms
14,344 KB
testcase_07 AC 61 ms
14,516 KB
testcase_08 AC 112 ms
20,760 KB
testcase_09 AC 122 ms
21,040 KB
testcase_10 AC 64 ms
14,932 KB
testcase_11 AC 100 ms
18,888 KB
testcase_12 AC 75 ms
15,832 KB
testcase_13 AC 70 ms
15,488 KB
testcase_14 AC 104 ms
19,376 KB
testcase_15 AC 33 ms
11,008 KB
testcase_16 AC 35 ms
11,392 KB
testcase_17 AC 33 ms
10,752 KB
testcase_18 AC 35 ms
11,264 KB
testcase_19 AC 37 ms
11,392 KB
testcase_20 AC 39 ms
11,776 KB
testcase_21 AC 40 ms
11,776 KB
testcase_22 AC 48 ms
13,068 KB
testcase_23 AC 78 ms
16,100 KB
testcase_24 AC 90 ms
18,556 KB
testcase_25 AC 123 ms
21,360 KB
testcase_26 AC 118 ms
21,392 KB
testcase_27 AC 87 ms
21,396 KB
testcase_28 AC 93 ms
21,320 KB
testcase_29 AC 120 ms
21,524 KB
testcase_30 AC 118 ms
21,264 KB
testcase_31 AC 121 ms
20,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
kamo_list = sorted(list(map(int, input().split(' '))))



equal_interval = 'YES'
diff = kamo_list[1] - kamo_list[0]
if diff == 0:
    equal_interval = 'NO'
for i in range(2,len(kamo_list)):
    if kamo_list[i] - kamo_list[i-1] != diff:
        equal_interval = 'NO'

print(equal_interval)
0