結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
15,404 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 105 ms
20,308 KB
testcase_05 AC 53 ms
14,448 KB
testcase_06 AC 57 ms
14,328 KB
testcase_07 AC 58 ms
14,636 KB
testcase_08 AC 112 ms
20,880 KB
testcase_09 AC 122 ms
21,408 KB
testcase_10 AC 64 ms
15,044 KB
testcase_11 AC 96 ms
18,812 KB
testcase_12 AC 69 ms
15,980 KB
testcase_13 AC 68 ms
15,600 KB
testcase_14 AC 92 ms
19,616 KB
testcase_15 WA -
testcase_16 AC 32 ms
11,520 KB
testcase_17 AC 30 ms
11,008 KB
testcase_18 AC 33 ms
11,392 KB
testcase_19 AC 33 ms
11,648 KB
testcase_20 AC 36 ms
12,032 KB
testcase_21 AC 37 ms
12,032 KB
testcase_22 AC 44 ms
13,180 KB
testcase_23 AC 71 ms
16,372 KB
testcase_24 AC 85 ms
18,544 KB
testcase_25 AC 114 ms
21,476 KB
testcase_26 AC 104 ms
21,596 KB
testcase_27 WA -
testcase_28 AC 88 ms
21,476 KB
testcase_29 AC 107 ms
21,604 KB
testcase_30 AC 108 ms
21,600 KB
testcase_31 AC 110 ms
20,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

diff = kamo_list[1] - kamo_list[0]

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

print(equal_interval)
0