結果

問題 No.383 レーティング
ユーザー ぴろずぴろず
提出日時 2016-07-01 22:33:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 75,872 KB
実行使用メモリ 42,564 KB
最終ジャッジ日時 2024-10-12 00:41:43
合計ジャッジ時間 5,282 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
42,136 KB
testcase_01 AC 165 ms
42,148 KB
testcase_02 AC 165 ms
42,460 KB
testcase_03 AC 160 ms
42,228 KB
testcase_04 AC 150 ms
41,840 KB
testcase_05 AC 163 ms
42,248 KB
testcase_06 AC 160 ms
42,472 KB
testcase_07 AC 163 ms
42,332 KB
testcase_08 AC 162 ms
42,368 KB
testcase_09 AC 164 ms
42,464 KB
testcase_10 AC 162 ms
42,144 KB
testcase_11 AC 159 ms
42,564 KB
testcase_12 AC 162 ms
42,212 KB
testcase_13 AC 158 ms
42,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no383;

import java.util.Scanner;

public class Main {

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

}
0