結果

問題 No.1883 SLASH
ユーザー 👑 H20H20
提出日時 2022-03-25 21:20:48
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 76 bytes
コンパイル時間 730 ms
コンパイル使用メモリ 87,024 KB
実行使用メモリ 71,532 KB
最終ジャッジ日時 2023-08-04 08:01:56
合計ジャッジ時間 2,468 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,480 KB
testcase_01 AC 74 ms
71,532 KB
testcase_02 AC 73 ms
71,316 KB
testcase_03 AC 76 ms
71,512 KB
testcase_04 AC 77 ms
71,320 KB
testcase_05 AC 75 ms
71,232 KB
testcase_06 AC 75 ms
71,228 KB
testcase_07 AC 76 ms
71,236 KB
testcase_08 AC 77 ms
71,188 KB
testcase_09 AC 77 ms
71,088 KB
testcase_10 AC 75 ms
71,492 KB
testcase_11 AC 77 ms
71,528 KB
testcase_12 AC 79 ms
71,228 KB
testcase_13 AC 76 ms
71,188 KB
testcase_14 AC 76 ms
71,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
for i in range(3):
    S[i]=int(S[i])
print(max(S)-min(S))
0