結果

問題 No.1883 SLASH
ユーザー hiro1729hiro1729
提出日時 2023-09-09 10:58:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 68 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 53,592 KB
最終ジャッジ日時 2024-06-27 04:05:48
合計ジャッジ時間 1,528 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,300 KB
testcase_01 AC 38 ms
52,064 KB
testcase_02 AC 38 ms
53,592 KB
testcase_03 AC 37 ms
52,304 KB
testcase_04 AC 37 ms
52,720 KB
testcase_05 AC 37 ms
51,816 KB
testcase_06 AC 37 ms
52,580 KB
testcase_07 AC 37 ms
53,136 KB
testcase_08 AC 37 ms
52,568 KB
testcase_09 AC 37 ms
52,664 KB
testcase_10 AC 36 ms
52,864 KB
testcase_11 AC 36 ms
53,024 KB
testcase_12 AC 37 ms
52,648 KB
testcase_13 AC 37 ms
53,348 KB
testcase_14 AC 38 ms
53,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c = map(int, list(input()))
print(max(a, b, c) - min(a, b, c))
0