結果

問題 No.383 レーティング
ユーザー TakaTaka
提出日時 2016-11-01 17:08:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 3,645 ms
コンパイル使用メモリ 77,728 KB
実行使用メモリ 54,512 KB
最終ジャッジ日時 2024-11-25 00:57:11
合計ジャッジ時間 6,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,196 KB
testcase_01 AC 119 ms
54,012 KB
testcase_02 AC 131 ms
54,168 KB
testcase_03 AC 140 ms
54,228 KB
testcase_04 AC 128 ms
53,972 KB
testcase_05 AC 126 ms
52,732 KB
testcase_06 AC 136 ms
53,924 KB
testcase_07 AC 146 ms
54,396 KB
testcase_08 AC 131 ms
54,048 KB
testcase_09 AC 147 ms
54,512 KB
testcase_10 AC 142 ms
54,084 KB
testcase_11 AC 130 ms
54,196 KB
testcase_12 AC 119 ms
52,924 KB
testcase_13 AC 131 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
import java.math.BigDecimal;

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