結果

問題 No.1883 SLASH
ユーザー マサマサ
提出日時 2022-09-08 20:38:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 1,758 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 55,876 KB
最終ジャッジ日時 2024-11-24 16:16:11
合計ジャッジ時間 4,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,812 KB
testcase_01 AC 117 ms
53,844 KB
testcase_02 AC 115 ms
55,876 KB
testcase_03 AC 101 ms
52,964 KB
testcase_04 AC 123 ms
53,864 KB
testcase_05 AC 123 ms
53,884 KB
testcase_06 AC 120 ms
53,612 KB
testcase_07 AC 99 ms
53,068 KB
testcase_08 AC 94 ms
52,672 KB
testcase_09 AC 117 ms
53,680 KB
testcase_10 AC 103 ms
53,052 KB
testcase_11 AC 101 ms
53,008 KB
testcase_12 AC 113 ms
53,712 KB
testcase_13 AC 97 ms
52,736 KB
testcase_14 AC 104 ms
52,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] strAry = sc.next().split("");
		
		int[] intAry = new int[3];
		for (int i = 0; i < 3; i++) {
			intAry[i] = Integer.parseInt(strAry[i]);
		}
		
		int max = Math.max(Math.max(intAry[0], intAry[1]), intAry[2]);
		int min = Math.min(Math.min(intAry[0], intAry[1]), intAry[2]);
		int result = max - min;
		System.out.println(result);
		
		sc.close();
	}
}
0