結果

問題 No.406 鴨等間隔の法則
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-11 08:20:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 94,816 KB
最終ジャッジ日時 2024-09-15 05:39:24
合計ジャッジ時間 4,562 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
72,980 KB
testcase_01 AC 37 ms
52,704 KB
testcase_02 AC 37 ms
52,276 KB
testcase_03 AC 37 ms
51,996 KB
testcase_04 AC 82 ms
89,452 KB
testcase_05 AC 55 ms
69,596 KB
testcase_06 AC 55 ms
71,548 KB
testcase_07 AC 55 ms
70,860 KB
testcase_08 AC 83 ms
89,812 KB
testcase_09 AC 86 ms
93,396 KB
testcase_10 AC 56 ms
72,440 KB
testcase_11 AC 76 ms
86,540 KB
testcase_12 AC 61 ms
75,860 KB
testcase_13 AC 60 ms
75,676 KB
testcase_14 AC 79 ms
89,564 KB
testcase_15 AC 39 ms
59,280 KB
testcase_16 AC 41 ms
60,828 KB
testcase_17 AC 40 ms
59,956 KB
testcase_18 AC 42 ms
61,852 KB
testcase_19 AC 44 ms
61,980 KB
testcase_20 AC 45 ms
63,296 KB
testcase_21 AC 44 ms
62,044 KB
testcase_22 AC 50 ms
66,080 KB
testcase_23 AC 64 ms
78,780 KB
testcase_24 AC 75 ms
87,012 KB
testcase_25 AC 89 ms
94,036 KB
testcase_26 AC 87 ms
94,016 KB
testcase_27 AC 57 ms
75,616 KB
testcase_28 AC 71 ms
92,972 KB
testcase_29 AC 88 ms
94,344 KB
testcase_30 AC 89 ms
94,816 KB
testcase_31 AC 86 ms
92,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = sorted(list(set(map(int,input().split()))))
if n != len(X):
    print("NO")
else:
    cnt = X[1] - X[0]
    for i in range(1,n-1):
        if cnt != X[i+1] - X[i]:
            print("NO")
            exit()
    print("YES")
0