結果

問題 No.406 鴨等間隔の法則
ユーザー mokraimokrai
提出日時 2017-10-15 00:21:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,456 KB
最終ジャッジ日時 2024-11-07 12:52:47
合計ジャッジ時間 3,500 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
16,880 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 WA -
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 76 ms
22,276 KB
testcase_05 AC 47 ms
16,780 KB
testcase_06 AC 47 ms
16,908 KB
testcase_07 AC 48 ms
17,088 KB
testcase_08 AC 77 ms
22,400 KB
testcase_09 AC 83 ms
24,188 KB
testcase_10 AC 51 ms
16,868 KB
testcase_11 AC 66 ms
18,816 KB
testcase_12 AC 55 ms
17,604 KB
testcase_13 AC 53 ms
16,064 KB
testcase_14 AC 99 ms
22,468 KB
testcase_15 AC 31 ms
11,008 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 36 ms
11,904 KB
testcase_20 AC 39 ms
12,416 KB
testcase_21 WA -
testcase_22 AC 48 ms
15,508 KB
testcase_23 AC 54 ms
16,988 KB
testcase_24 AC 84 ms
18,616 KB
testcase_25 AC 79 ms
23,556 KB
testcase_26 AC 112 ms
24,456 KB
testcase_27 AC 70 ms
22,264 KB
testcase_28 AC 81 ms
23,564 KB
testcase_29 AC 113 ms
24,260 KB
testcase_30 AC 114 ms
24,268 KB
testcase_31 AC 80 ms
23,788 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")
                break
        print("YES")

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