結果

問題 No.383 レーティング
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-18 11:24:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 3,779 ms
コンパイル使用メモリ 76,304 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-26 05:52:09
合計ジャッジ時間 5,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,224 KB
testcase_01 AC 121 ms
41,124 KB
testcase_02 AC 115 ms
41,472 KB
testcase_03 AC 117 ms
41,264 KB
testcase_04 AC 122 ms
41,212 KB
testcase_05 AC 106 ms
40,296 KB
testcase_06 AC 118 ms
41,200 KB
testcase_07 AC 110 ms
40,184 KB
testcase_08 AC 112 ms
40,836 KB
testcase_09 AC 119 ms
41,440 KB
testcase_10 AC 120 ms
41,196 KB
testcase_11 AC 119 ms
41,172 KB
testcase_12 AC 118 ms
41,432 KB
testcase_13 AC 105 ms
40,284 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