結果

問題 No.383 レーティング
ユーザー yamax3232yamax3232
提出日時 2017-02-15 20:13:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 3,638 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-06-09 12:37:06
合計ジャッジ時間 5,403 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,892 KB
testcase_01 AC 110 ms
53,936 KB
testcase_02 AC 109 ms
53,852 KB
testcase_03 AC 109 ms
54,092 KB
testcase_04 AC 109 ms
54,148 KB
testcase_05 AC 108 ms
53,944 KB
testcase_06 AC 109 ms
54,316 KB
testcase_07 AC 106 ms
53,916 KB
testcase_08 AC 106 ms
52,872 KB
testcase_09 AC 117 ms
53,980 KB
testcase_10 AC 113 ms
53,956 KB
testcase_11 AC 109 ms
54,008 KB
testcase_12 AC 108 ms
53,972 KB
testcase_13 AC 110 ms
54,228 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");
}

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

}
0