結果

問題 No.965 門松列が嫌い
ユーザー convexineq
提出日時 2020-01-13 20:42:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 122 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-21 16:34:24
合計ジャッジ時間 1,096 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 1
other RE * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

abc = [int(i) for i in input().split()]
s = sorted(abc)

ans = min(s[1]-s[0],s[2]-s[1])

if b == s[1]: ans = 0

print(ans)
0