結果

問題 No.406 鴨等間隔の法則
ユーザー mokraimokrai
提出日時 2017-10-15 00:22:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,416 KB
最終ジャッジ日時 2024-07-07 12:17:51
合計ジャッジ時間 3,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
16,864 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 34 ms
10,624 KB
testcase_04 AC 71 ms
22,388 KB
testcase_05 AC 45 ms
16,780 KB
testcase_06 AC 45 ms
16,912 KB
testcase_07 AC 47 ms
17,088 KB
testcase_08 AC 71 ms
22,440 KB
testcase_09 AC 75 ms
24,076 KB
testcase_10 AC 48 ms
16,868 KB
testcase_11 AC 65 ms
18,948 KB
testcase_12 AC 51 ms
17,600 KB
testcase_13 AC 48 ms
17,328 KB
testcase_14 AC 91 ms
22,664 KB
testcase_15 AC 30 ms
11,136 KB
testcase_16 AC 31 ms
12,032 KB
testcase_17 AC 29 ms
11,264 KB
testcase_18 AC 32 ms
12,160 KB
testcase_19 AC 34 ms
12,160 KB
testcase_20 AC 37 ms
12,544 KB
testcase_21 AC 36 ms
12,544 KB
testcase_22 AC 47 ms
15,512 KB
testcase_23 AC 54 ms
18,096 KB
testcase_24 AC 83 ms
18,620 KB
testcase_25 AC 79 ms
23,440 KB
testcase_26 AC 108 ms
24,416 KB
testcase_27 AC 67 ms
22,272 KB
testcase_28 AC 77 ms
23,364 KB
testcase_29 AC 106 ms
24,364 KB
testcase_30 AC 106 ms
24,244 KB
testcase_31 AC 75 ms
23,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    l = [int(i) for i in input().split()]
    if len(l) != len(list(set(l))):
        print("NO")
    else:
        sorted_list = sorted(l)
        diff = sorted_list[1] - sorted_list[0]
        for i in range(len(sorted_list) - 1):
            if diff != sorted_list[i+1] - sorted_list[i]:
                print("NO")
                return
        print("YES")

if __name__ == '__main__':
    main()
0