結果

問題 No.1883 SLASH
ユーザー zerofzerof
提出日時 2022-05-11 22:05:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 64 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 86,680 KB
実行使用メモリ 71,316 KB
最終ジャッジ日時 2023-09-26 13:26:03
合計ジャッジ時間 2,551 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,316 KB
testcase_01 AC 72 ms
71,220 KB
testcase_02 AC 67 ms
70,876 KB
testcase_03 AC 67 ms
71,028 KB
testcase_04 AC 65 ms
71,224 KB
testcase_05 AC 67 ms
71,028 KB
testcase_06 AC 66 ms
71,280 KB
testcase_07 AC 66 ms
71,032 KB
testcase_08 AC 65 ms
71,228 KB
testcase_09 AC 65 ms
70,760 KB
testcase_10 AC 65 ms
71,272 KB
testcase_11 AC 66 ms
71,224 KB
testcase_12 AC 66 ms
71,240 KB
testcase_13 AC 68 ms
70,760 KB
testcase_14 AC 67 ms
71,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

nums = list(map(int, input()[::1]))
print(max(nums) - min(nums))
0