結果

問題 No.406 鴨等間隔の法則
ユーザー shogo2022shogo2022
提出日時 2017-01-21 05:33:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 350 bytes
コンパイル時間 873 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,656 KB
最終ジャッジ日時 2024-11-07 06:59:01
合計ジャッジ時間 4,340 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
14,820 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 103 ms
20,452 KB
testcase_05 AC 55 ms
14,472 KB
testcase_06 AC 57 ms
14,480 KB
testcase_07 AC 59 ms
14,524 KB
testcase_08 AC 109 ms
20,768 KB
testcase_09 AC 119 ms
21,172 KB
testcase_10 AC 62 ms
15,072 KB
testcase_11 AC 95 ms
19,024 KB
testcase_12 AC 69 ms
16,128 KB
testcase_13 AC 66 ms
15,752 KB
testcase_14 WA -
testcase_15 AC 32 ms
11,264 KB
testcase_16 AC 34 ms
11,520 KB
testcase_17 AC 31 ms
11,136 KB
testcase_18 AC 33 ms
11,520 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 37 ms
12,032 KB
testcase_22 WA -
testcase_23 AC 71 ms
16,484 KB
testcase_24 WA -
testcase_25 AC 111 ms
21,364 KB
testcase_26 WA -
testcase_27 AC 89 ms
21,532 KB
testcase_28 AC 88 ms
21,368 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 109 ms
20,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
kamo_list = sorted(list(map(int, input().split(' '))))

if kamo_list[0] == 0:
    diff = kamo_list[1]
    start_index = 2
else:
    diff = kamo_list[0]
    start_index = 1

equal_interval = 'YES'
for i in range(start_index,len(kamo_list)):
    if kamo_list[i] - kamo_list[i-1] != diff:
        equal_interval = 'NO'

print(equal_interval)
0