結果

問題 No.383 レーティング
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-18 11:24:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 76,576 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-05-04 16:48:46
合計ジャッジ時間 4,587 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,176 KB
testcase_01 AC 123 ms
41,020 KB
testcase_02 AC 119 ms
41,476 KB
testcase_03 AC 112 ms
41,144 KB
testcase_04 AC 110 ms
41,412 KB
testcase_05 AC 127 ms
41,540 KB
testcase_06 AC 123 ms
41,152 KB
testcase_07 AC 111 ms
41,700 KB
testcase_08 AC 127 ms
41,144 KB
testcase_09 AC 111 ms
41,552 KB
testcase_10 AC 117 ms
41,152 KB
testcase_11 AC 117 ms
41,300 KB
testcase_12 AC 123 ms
41,508 KB
testcase_13 AC 123 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Question383
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int a = scan.nextInt();
		int b = scan.nextInt();
		

		if(b-a > 0){
			System.out.println("+"+Integer.toString(Math.abs(a-b)));
		}
		else if(b-a < 0){
			System.out.println("-"+Integer.toString(a-b));
		}
		else{
			System.out.println("0");
		}
	}
}
0