結果

問題 No.965 門松列が嫌い
ユーザー futago0118futago0118
提出日時 2020-05-28 09:45:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 1,000 ms
コード長 221 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-13 04:03:07
合計ジャッジ時間 1,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C = map(int,input().split())

number = [A,B,C]

cnt = cnt2 = 0

cnt = abs(A-C)

b = B
number = sorted(number)

if number[1] != b:
    cnt2 = min(abs(number[0]-number[1]),abs(number[1]-number[2]))

print(min(cnt,cnt2))
0