結果

問題 No.383 レーティング
ユーザー TakaTaka
提出日時 2016-11-01 17:08:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 3,393 ms
コンパイル使用メモリ 77,576 KB
実行使用メモリ 41,804 KB
最終ジャッジ日時 2024-05-03 20:40:50
合計ジャッジ時間 5,787 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,424 KB
testcase_01 AC 114 ms
40,704 KB
testcase_02 AC 98 ms
40,012 KB
testcase_03 AC 131 ms
41,512 KB
testcase_04 AC 117 ms
41,108 KB
testcase_05 AC 132 ms
41,804 KB
testcase_06 AC 131 ms
41,536 KB
testcase_07 AC 134 ms
41,336 KB
testcase_08 AC 112 ms
41,412 KB
testcase_09 AC 114 ms
40,072 KB
testcase_10 AC 124 ms
41,536 KB
testcase_11 AC 109 ms
40,928 KB
testcase_12 AC 117 ms
41,216 KB
testcase_13 AC 117 ms
41,148 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