結果

問題 No.383 レーティング
ユーザー mits58mits58
提出日時 2016-07-02 00:13:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 76,680 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-10-12 01:29:33
合計ジャッジ時間 4,703 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,144 KB
testcase_01 AC 130 ms
53,788 KB
testcase_02 AC 129 ms
54,072 KB
testcase_03 AC 152 ms
53,876 KB
testcase_04 AC 130 ms
54,084 KB
testcase_05 AC 143 ms
54,028 KB
testcase_06 AC 144 ms
54,252 KB
testcase_07 AC 140 ms
53,976 KB
testcase_08 AC 127 ms
53,952 KB
testcase_09 AC 140 ms
53,888 KB
testcase_10 AC 140 ms
54,368 KB
testcase_11 AC 125 ms
54,080 KB
testcase_12 AC 114 ms
52,840 KB
testcase_13 AC 129 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			int a=sc.nextInt();
			int b=sc.nextInt();
			int dif=b-a;
			if(dif<0) System.out.println(dif);
			else if(dif>0) System.out.println("+"+dif);
			else System.out.println(dif);
		}
	}
}
0