結果

問題 No.383 レーティング
ユーザー リチウムリチウム
提出日時 2016-07-01 22:58:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 3,312 ms
コンパイル使用メモリ 76,532 KB
実行使用メモリ 55,128 KB
最終ジャッジ日時 2024-10-12 01:02:25
合計ジャッジ時間 6,413 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
54,608 KB
testcase_01 AC 162 ms
55,080 KB
testcase_02 AC 158 ms
54,924 KB
testcase_03 AC 161 ms
54,652 KB
testcase_04 AC 157 ms
54,692 KB
testcase_05 AC 158 ms
55,128 KB
testcase_06 AC 158 ms
54,524 KB
testcase_07 AC 159 ms
55,076 KB
testcase_08 AC 163 ms
54,716 KB
testcase_09 AC 162 ms
54,696 KB
testcase_10 AC 157 ms
54,664 KB
testcase_11 AC 147 ms
54,680 KB
testcase_12 AC 159 ms
54,696 KB
testcase_13 AC 159 ms
54,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test;

import java.util.Scanner;


public class atc {

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

}
0