結果

問題 No.1883 SLASH
ユーザー マサマサ
提出日時 2022-09-08 20:38:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 1,781 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 41,576 KB
最終ジャッジ日時 2024-05-03 15:06:54
合計ジャッジ時間 4,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,160 KB
testcase_01 AC 110 ms
41,316 KB
testcase_02 AC 108 ms
40,124 KB
testcase_03 AC 110 ms
41,236 KB
testcase_04 AC 107 ms
41,220 KB
testcase_05 AC 129 ms
41,208 KB
testcase_06 AC 111 ms
41,356 KB
testcase_07 AC 93 ms
41,340 KB
testcase_08 AC 110 ms
41,508 KB
testcase_09 AC 106 ms
41,380 KB
testcase_10 AC 108 ms
41,000 KB
testcase_11 AC 96 ms
41,444 KB
testcase_12 AC 100 ms
41,440 KB
testcase_13 AC 117 ms
41,576 KB
testcase_14 AC 119 ms
41,092 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