結果

問題 No.383 レーティング
ユーザー fal_rndfal_rnd
提出日時 2016-10-29 00:41:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 74,080 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-11-24 06:57:47
合計ジャッジ時間 4,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,068 KB
testcase_01 AC 124 ms
41,212 KB
testcase_02 AC 128 ms
41,212 KB
testcase_03 AC 132 ms
40,992 KB
testcase_04 AC 115 ms
40,232 KB
testcase_05 AC 117 ms
39,968 KB
testcase_06 AC 134 ms
41,112 KB
testcase_07 AC 132 ms
41,016 KB
testcase_08 AC 131 ms
41,336 KB
testcase_09 AC 113 ms
40,612 KB
testcase_10 AC 114 ms
40,096 KB
testcase_11 AC 115 ms
40,228 KB
testcase_12 AC 127 ms
41,008 KB
testcase_13 AC 116 ms
39,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int r = -s.nextInt()+s.nextInt();
		if(r>0)
			System.out.print("+");
		System.out.println(r);
	}
}
0