結果

問題 No.383 レーティング
ユーザー yamax3232yamax3232
提出日時 2017-02-15 20:10:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 371 bytes
コンパイル時間 3,758 ms
コンパイル使用メモリ 78,264 KB
実行使用メモリ 56,108 KB
最終ジャッジ日時 2024-06-09 12:36:27
合計ジャッジ時間 5,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,036 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 116 ms
53,904 KB
testcase_04 WA -
testcase_05 AC 115 ms
53,792 KB
testcase_06 AC 114 ms
53,756 KB
testcase_07 AC 102 ms
52,964 KB
testcase_08 WA -
testcase_09 AC 114 ms
53,940 KB
testcase_10 AC 117 ms
54,104 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

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("-");
}else{
	System.out.print("0");
}
System.out.printf("%d",b-a);
kb.close();
	}

}

0