結果

問題 No.383 レーティング
ユーザー misk703misk703
提出日時 2018-06-05 11:38:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 3,399 ms
コンパイル使用メモリ 76,860 KB
実行使用メモリ 42,604 KB
最終ジャッジ日時 2024-06-30 09:53:51
合計ジャッジ時間 6,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
42,604 KB
testcase_01 AC 157 ms
42,440 KB
testcase_02 AC 159 ms
42,364 KB
testcase_03 AC 158 ms
42,440 KB
testcase_04 AC 161 ms
42,324 KB
testcase_05 AC 160 ms
42,436 KB
testcase_06 AC 155 ms
42,588 KB
testcase_07 AC 161 ms
42,444 KB
testcase_08 AC 158 ms
42,516 KB
testcase_09 AC 162 ms
42,548 KB
testcase_10 AC 158 ms
42,580 KB
testcase_11 AC 161 ms
42,424 KB
testcase_12 AC 160 ms
42,440 KB
testcase_13 AC 164 ms
42,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No383 {

    public static void main(String[] args) {
	Scanner s = new Scanner(System.in);
	int a = s.nextInt();
	int b = s.nextInt();
	int ans = a-b;
	String plamai;
	if(ans < 0){
	    plamai = "+";
	    ans = Math.abs(ans);
	}else if(ans > 0){
	    plamai = "-";
	}else{
	    plamai = "";
	}

	System.out.println(plamai + ans);
    }

}
0