結果

問題 No.383 レーティング
ユーザー 37zigen37zigen
提出日時 2016-07-01 22:32:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 77,256 KB
実行使用メモリ 42,440 KB
最終ジャッジ日時 2024-10-12 00:40:40
合計ジャッジ時間 5,279 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
42,132 KB
testcase_01 AC 161 ms
42,324 KB
testcase_02 AC 151 ms
42,028 KB
testcase_03 AC 165 ms
42,440 KB
testcase_04 AC 151 ms
42,204 KB
testcase_05 AC 165 ms
42,388 KB
testcase_06 AC 161 ms
42,100 KB
testcase_07 AC 144 ms
41,916 KB
testcase_08 AC 157 ms
42,260 KB
testcase_09 AC 158 ms
42,240 KB
testcase_10 AC 163 ms
42,352 KB
testcase_11 AC 158 ms
42,412 KB
testcase_12 AC 165 ms
42,268 KB
testcase_13 AC 160 ms
42,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		new Main().solver();
	}
	void solver(){
		Scanner sc=new Scanner(System.in);
		int a=sc.nextInt();
		int b=sc.nextInt();
		System.out.println((b-a>0?"+":"")+(b-a));
	}
}
0