結果

問題 No.383 レーティング
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-03 09:53:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 2,774 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 50,904 KB
最終ジャッジ日時 2024-11-16 05:31:03
合計ジャッジ時間 4,212 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
50,844 KB
testcase_01 AC 46 ms
50,120 KB
testcase_02 AC 46 ms
49,776 KB
testcase_03 AC 57 ms
50,364 KB
testcase_04 AC 45 ms
50,268 KB
testcase_05 AC 58 ms
50,792 KB
testcase_06 AC 57 ms
50,380 KB
testcase_07 AC 58 ms
50,156 KB
testcase_08 AC 46 ms
50,284 KB
testcase_09 AC 60 ms
50,796 KB
testcase_10 AC 60 ms
50,904 KB
testcase_11 AC 45 ms
49,876 KB
testcase_12 AC 45 ms
50,064 KB
testcase_13 AC 45 ms
50,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No383 {
	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			String[] str = br.readLine().split(" ");
			int before = Integer.parseInt(str[0]);
			int after = Integer.parseInt(str[1]);
			getDifference(before,after);
		}catch(IOException e){
			e.getStackTrace();
		}catch(NumberFormatException e){
			e.getStackTrace();
		}
	}
	
	public static void getDifference(int x, int y){
		int ans = y - x;
		if(x<y) System.out.println("+" + ans);
		else System.out.println(ans);
	}
}
0