結果

問題 No.1883 SLASH
ユーザー deepjugglingdeepjuggling
提出日時 2022-06-12 22:52:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 89 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 53,892 KB
最終ジャッジ日時 2024-09-24 09:25:25
合計ジャッジ時間 1,505 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,440 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 34 ms
52,148 KB
testcase_03 AC 35 ms
52,068 KB
testcase_04 AC 35 ms
52,512 KB
testcase_05 AC 35 ms
52,196 KB
testcase_06 AC 34 ms
53,300 KB
testcase_07 AC 35 ms
52,108 KB
testcase_08 AC 35 ms
52,504 KB
testcase_09 AC 34 ms
52,880 KB
testcase_10 AC 35 ms
52,664 KB
testcase_11 AC 38 ms
52,336 KB
testcase_12 AC 34 ms
52,796 KB
testcase_13 AC 33 ms
52,644 KB
testcase_14 AC 35 ms
53,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
s = list(s)
for i in range(3):
    s[i] = int(s[i])
s.sort()
print(s[2]-s[0])
0