結果

問題 No.383 レーティング
ユーザー kaoetayakaoetaya
提出日時 2016-11-28 13:17:42
言語 Java
(openjdk 23)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 3,121 ms
コンパイル使用メモリ 76,532 KB
実行使用メモリ 41,004 KB
最終ジャッジ日時 2024-11-27 12:35:40
合計ジャッジ時間 5,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
39,772 KB
testcase_01 AC 105 ms
39,816 KB
testcase_02 AC 105 ms
39,880 KB
testcase_03 AC 126 ms
41,004 KB
testcase_04 AC 102 ms
39,644 KB
testcase_05 AC 116 ms
40,236 KB
testcase_06 AC 124 ms
40,912 KB
testcase_07 AC 116 ms
40,240 KB
testcase_08 AC 106 ms
40,384 KB
testcase_09 AC 116 ms
40,120 KB
testcase_10 AC 115 ms
39,992 KB
testcase_11 AC 100 ms
39,816 KB
testcase_12 AC 106 ms
39,948 KB
testcase_13 AC 117 ms
40,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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