結果

問題 No.383 レーティング
ユーザー Natsume-MNatsume-M
提出日時 2016-12-09 17:15:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 1,887 ms
コンパイル使用メモリ 76,116 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-11-28 16:22:34
合計ジャッジ時間 4,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,152 KB
testcase_01 AC 102 ms
52,720 KB
testcase_02 AC 100 ms
52,720 KB
testcase_03 AC 115 ms
53,228 KB
testcase_04 AC 103 ms
53,008 KB
testcase_05 AC 119 ms
52,984 KB
testcase_06 AC 124 ms
54,112 KB
testcase_07 AC 115 ms
53,164 KB
testcase_08 AC 97 ms
52,740 KB
testcase_09 AC 115 ms
54,488 KB
testcase_10 AC 126 ms
54,120 KB
testcase_11 AC 113 ms
54,108 KB
testcase_12 AC 118 ms
53,964 KB
testcase_13 AC 105 ms
52,960 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