結果

問題 No.383 レーティング
ユーザー kaoetayakaoetaya
提出日時 2016-11-28 13:17:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 3,144 ms
コンパイル使用メモリ 75,936 KB
実行使用メモリ 42,136 KB
最終ジャッジ日時 2024-05-05 14:32:40
合計ジャッジ時間 5,489 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,676 KB
testcase_01 AC 119 ms
41,164 KB
testcase_02 AC 116 ms
41,496 KB
testcase_03 AC 135 ms
42,136 KB
testcase_04 AC 121 ms
41,540 KB
testcase_05 AC 116 ms
40,680 KB
testcase_06 AC 126 ms
41,560 KB
testcase_07 AC 126 ms
41,708 KB
testcase_08 AC 111 ms
41,632 KB
testcase_09 AC 119 ms
40,500 KB
testcase_10 AC 115 ms
40,384 KB
testcase_11 AC 106 ms
40,056 KB
testcase_12 AC 114 ms
41,284 KB
testcase_13 AC 113 ms
41,196 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