結果

問題 No.383 レーティング
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 21:47:54
言語 Java
(openjdk 23)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 4,359 ms
コンパイル使用メモリ 76,264 KB
実行使用メモリ 41,780 KB
最終ジャッジ日時 2024-07-07 19:11:30
合計ジャッジ時間 6,562 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
41,440 KB
testcase_01 AC 133 ms
40,900 KB
testcase_02 AC 135 ms
41,160 KB
testcase_03 AC 149 ms
41,736 KB
testcase_04 AC 136 ms
41,112 KB
testcase_05 AC 152 ms
41,500 KB
testcase_06 AC 149 ms
41,284 KB
testcase_07 AC 153 ms
41,344 KB
testcase_08 AC 119 ms
40,472 KB
testcase_09 AC 148 ms
41,780 KB
testcase_10 AC 151 ms
41,636 KB
testcase_11 AC 137 ms
41,148 KB
testcase_12 AC 135 ms
41,184 KB
testcase_13 AC 135 ms
41,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Rating {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int a = s.nextInt();
		int b = s.nextInt();
		s.close();
		if(a >= b){
			System.out.println(b-a);
		}else if(a < b){
			System.out.println("+" + (b-a));
		}

	}

}
0