結果

問題 No.965 門松列が嫌い
ユーザー miya145592miya145592
提出日時 2023-05-01 21:49:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 117 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-04-30 20:11:15
合計ジャッジ時間 1,010 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,188 KB
testcase_01 AC 37 ms
51,828 KB
testcase_02 AC 36 ms
52,632 KB
testcase_03 AC 33 ms
52,432 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 32 ms
52,076 KB
testcase_08 WA -
testcase_09 AC 32 ms
52,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int, input().split())
if B==max(A, B, C):
    ans = B-max(A, C)
else:
    ans = min(A, C)-B
print(ans)
0