結果

問題 No.383 レーティング
ユーザー yamax3232yamax3232
提出日時 2017-02-15 20:12:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 389 bytes
コンパイル時間 3,421 ms
コンパイル使用メモリ 74,552 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-06-09 12:36:35
合計ジャッジ時間 6,004 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,332 KB
testcase_01 AC 131 ms
41,236 KB
testcase_02 WA -
testcase_03 AC 130 ms
41,472 KB
testcase_04 AC 129 ms
41,116 KB
testcase_05 AC 131 ms
41,048 KB
testcase_06 AC 132 ms
41,116 KB
testcase_07 AC 131 ms
41,196 KB
testcase_08 AC 133 ms
41,456 KB
testcase_09 AC 134 ms
40,960 KB
testcase_10 AC 134 ms
41,056 KB
testcase_11 AC 133 ms
41,040 KB
testcase_12 AC 131 ms
41,208 KB
testcase_13 AC 120 ms
40,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Rating {

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


System.out.printf("%d",b-a);
kb.close();
	}

}

0