結果

問題 No.383 レーティング
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 20:58:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 76,376 KB
実行使用メモリ 41,800 KB
最終ジャッジ日時 2024-09-13 11:12:13
合計ジャッジ時間 4,981 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,668 KB
testcase_01 AC 128 ms
41,332 KB
testcase_02 AC 130 ms
41,148 KB
testcase_03 AC 144 ms
41,340 KB
testcase_04 AC 114 ms
39,900 KB
testcase_05 AC 144 ms
41,708 KB
testcase_06 AC 143 ms
41,800 KB
testcase_07 AC 146 ms
41,524 KB
testcase_08 AC 133 ms
41,264 KB
testcase_09 AC 146 ms
41,560 KB
testcase_10 AC 145 ms
41,728 KB
testcase_11 AC 129 ms
41,176 KB
testcase_12 AC 116 ms
40,256 KB
testcase_13 AC 127 ms
41,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int a = sc.nextInt(); int b = sc.nextInt();
		int rate = b - a;
		System.out.println(rate>0?"+"+rate:rate);
		
	}
}
0