結果

問題 No.965 門松列が嫌い
ユーザー ABKZABKZ
提出日時 2021-08-11 19:38:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 33 ms / 1,000 ms
コード長 84 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 53,088 KB
最終ジャッジ日時 2024-09-25 06:07:22
合計ジャッジ時間 1,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,824 KB
testcase_01 AC 30 ms
52,720 KB
testcase_02 AC 31 ms
52,276 KB
testcase_03 AC 33 ms
53,088 KB
testcase_04 AC 32 ms
52,064 KB
testcase_05 AC 32 ms
52,028 KB
testcase_06 AC 33 ms
51,864 KB
testcase_07 AC 31 ms
51,816 KB
testcase_08 AC 32 ms
52,608 KB
testcase_09 AC 32 ms
52,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(min(abs(A - C), abs(A - B), abs(C - B)))
0