結果

問題 No.383 レーティング
ユーザー Natsume-MNatsume-M
提出日時 2016-12-09 17:15:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 78,192 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-05-06 10:23:34
合計ジャッジ時間 4,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,236 KB
testcase_01 AC 109 ms
39,936 KB
testcase_02 AC 99 ms
40,076 KB
testcase_03 AC 123 ms
41,216 KB
testcase_04 AC 109 ms
40,912 KB
testcase_05 AC 122 ms
41,568 KB
testcase_06 AC 120 ms
41,420 KB
testcase_07 AC 120 ms
41,368 KB
testcase_08 AC 103 ms
41,056 KB
testcase_09 AC 112 ms
40,288 KB
testcase_10 AC 112 ms
39,960 KB
testcase_11 AC 108 ms
41,132 KB
testcase_12 AC 103 ms
40,344 KB
testcase_13 AC 109 ms
41,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y383 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt(), b = sc.nextInt();
		System.out.println((b-a)>0?"+"+(b-a):b-a);
		sc.close();
	}
}
0