結果

問題 No.406 鴨等間隔の法則
ユーザー otsunekootsuneko
提出日時 2021-05-07 15:25:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,608 KB
最終ジャッジ日時 2024-09-15 03:52:03
合計ジャッジ時間 4,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
68,352 KB
testcase_01 AC 40 ms
51,328 KB
testcase_02 AC 41 ms
51,328 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 81 ms
80,256 KB
testcase_05 AC 57 ms
66,176 KB
testcase_06 AC 57 ms
66,560 KB
testcase_07 AC 60 ms
67,072 KB
testcase_08 AC 81 ms
80,128 KB
testcase_09 AC 86 ms
82,816 KB
testcase_10 AC 61 ms
68,096 KB
testcase_11 AC 87 ms
77,056 KB
testcase_12 AC 64 ms
69,760 KB
testcase_13 AC 64 ms
70,016 KB
testcase_14 AC 83 ms
80,512 KB
testcase_15 AC 46 ms
58,752 KB
testcase_16 AC 47 ms
59,264 KB
testcase_17 AC 46 ms
58,112 KB
testcase_18 AC 46 ms
58,880 KB
testcase_19 AC 50 ms
60,416 KB
testcase_20 AC 52 ms
61,312 KB
testcase_21 AC 48 ms
60,672 KB
testcase_22 AC 55 ms
64,256 KB
testcase_23 AC 67 ms
71,296 KB
testcase_24 AC 77 ms
77,824 KB
testcase_25 AC 86 ms
82,688 KB
testcase_26 AC 92 ms
83,840 KB
testcase_27 AC 69 ms
82,176 KB
testcase_28 AC 70 ms
82,816 KB
testcase_29 AC 89 ms
84,608 KB
testcase_30 AC 88 ms
83,840 KB
testcase_31 AC 85 ms
82,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

diff = -1
for i in range(len(x)-1):
    if diff == -1:
        diff = x[i+1]-x[i]
    else:
        if diff != x[i+1]-x[i] or x[i+1]-x[i] == 0:
            print("NO")
            break
else:
    print("YES")
0