結果

問題 No.406 鴨等間隔の法則
ユーザー piconic_Xpiconic_X
提出日時 2016-08-23 17:32:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,740 KB
最終ジャッジ日時 2024-11-07 05:26:17
合計ジャッジ時間 3,242 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
15,412 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 82 ms
20,440 KB
testcase_05 AC 49 ms
14,456 KB
testcase_06 AC 49 ms
14,596 KB
testcase_07 AC 49 ms
14,772 KB
testcase_08 AC 81 ms
21,012 KB
testcase_09 AC 86 ms
21,412 KB
testcase_10 AC 51 ms
15,396 KB
testcase_11 AC 71 ms
19,072 KB
testcase_12 AC 57 ms
16,120 KB
testcase_13 AC 55 ms
15,732 KB
testcase_14 WA -
testcase_15 AC 32 ms
11,264 KB
testcase_16 AC 32 ms
11,520 KB
testcase_17 AC 31 ms
11,136 KB
testcase_18 AC 32 ms
11,520 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 36 ms
12,160 KB
testcase_22 WA -
testcase_23 AC 60 ms
16,512 KB
testcase_24 WA -
testcase_25 AC 89 ms
21,484 KB
testcase_26 WA -
testcase_27 AC 63 ms
21,732 KB
testcase_28 AC 65 ms
21,484 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 85 ms
21,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
xs = sorted(list(map(int, input().split())))
nw = xs[1]
itv = nw - xs[0]
if itv == 0:
    print('NO')
else:
    for i in range(1, N-1):
        nxt = xs[i+1]
        if nxt - nw == itv:
            continue
        else:
            print('NO')
            break
        nw = nxt
    else:
        print('YES')
0