結果

問題 No.383 レーティング
ユーザー ぴろずぴろず
提出日時 2016-07-01 22:22:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 257 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 76,016 KB
実行使用メモリ 56,724 KB
最終ジャッジ日時 2024-10-12 00:29:50
合計ジャッジ時間 5,246 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
54,532 KB
testcase_01 WA -
testcase_02 AC 165 ms
54,432 KB
testcase_03 AC 163 ms
54,736 KB
testcase_04 WA -
testcase_05 AC 163 ms
54,644 KB
testcase_06 AC 168 ms
54,764 KB
testcase_07 AC 167 ms
54,652 KB
testcase_08 WA -
testcase_09 AC 165 ms
54,812 KB
testcase_10 AC 169 ms
54,748 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

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 ? "+" : "") + Math.abs(b-a));
	}

}
0