結果

問題 No.406 鴨等間隔の法則
ユーザー maimai8maimai8
提出日時 2019-06-10 18:50:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 395 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,672 KB
最終ジャッジ日時 2024-10-06 00:44:19
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
14,948 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 70 ms
20,328 KB
testcase_05 AC 40 ms
14,220 KB
testcase_06 AC 41 ms
14,348 KB
testcase_07 AC 46 ms
14,520 KB
testcase_08 AC 69 ms
21,028 KB
testcase_09 AC 74 ms
21,300 KB
testcase_10 AC 45 ms
14,940 KB
testcase_11 AC 63 ms
18,896 KB
testcase_12 AC 50 ms
16,004 KB
testcase_13 AC 46 ms
15,624 KB
testcase_14 AC 90 ms
19,508 KB
testcase_15 WA -
testcase_16 AC 28 ms
11,520 KB
testcase_17 AC 26 ms
11,008 KB
testcase_18 AC 27 ms
11,520 KB
testcase_19 AC 31 ms
11,648 KB
testcase_20 AC 35 ms
11,904 KB
testcase_21 AC 33 ms
11,904 KB
testcase_22 AC 43 ms
12,952 KB
testcase_23 AC 52 ms
16,364 KB
testcase_24 AC 79 ms
18,560 KB
testcase_25 AC 77 ms
21,368 KB
testcase_26 AC 101 ms
21,528 KB
testcase_27 WA -
testcase_28 AC 60 ms
21,368 KB
testcase_29 AC 102 ms
21,524 KB
testcase_30 AC 96 ms
21,532 KB
testcase_31 AC 72 ms
20,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if __name__ == '__main__':
    n = int(input())
    lst = list(map(int, input().split()))
    lst.sort()
    before = lst[0]
    sa = lst[1] - before
    for i in range(len(lst)):
        if i != 0:
            if lst[i] - before == sa:
                before = lst[i]
                continue
            else:
                print("NO")
                sys.exit(0)
    print("YES")
0