結果

問題 No.383 レーティング
ユーザー YOSHIYOSHI
提出日時 2021-03-12 22:25:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 3,630 ms
コンパイル使用メモリ 81,072 KB
実行使用メモリ 51,224 KB
最終ジャッジ日時 2024-10-14 12:55:54
合計ジャッジ時間 5,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
51,152 KB
testcase_01 AC 75 ms
51,136 KB
testcase_02 AC 56 ms
50,144 KB
testcase_03 AC 74 ms
50,744 KB
testcase_04 AC 75 ms
51,172 KB
testcase_05 AC 74 ms
50,880 KB
testcase_06 AC 77 ms
51,124 KB
testcase_07 AC 74 ms
51,112 KB
testcase_08 AC 76 ms
51,152 KB
testcase_09 AC 74 ms
51,224 KB
testcase_10 AC 74 ms
51,184 KB
testcase_11 AC 75 ms
51,120 KB
testcase_12 AC 75 ms
51,044 KB
testcase_13 AC 78 ms
51,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000383_Main2 {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String[] arr = br.readLine().split(" ");
		int a = Integer.parseInt(arr[0]);
		int b = Integer.parseInt(arr[1]);
		if(a < b) {
			System.out.println("+" + (b - a));
		} else if(a > b) {
			System.out.println("-" + (a - b));
		} else {
			System.out.println("0");
		}
	}
}
0