結果

問題 No.383 レーティング
ユーザー GoyotanGoyotan
提出日時 2016-07-18 16:05:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 4,959 ms
コンパイル使用メモリ 77,624 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-10-15 16:57:28
合計ジャッジ時間 6,682 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
53,876 KB
testcase_01 AC 128 ms
53,700 KB
testcase_02 WA -
testcase_03 AC 148 ms
53,940 KB
testcase_04 AC 129 ms
53,760 KB
testcase_05 AC 148 ms
53,880 KB
testcase_06 AC 147 ms
54,360 KB
testcase_07 AC 150 ms
54,100 KB
testcase_08 AC 129 ms
54,000 KB
testcase_09 AC 148 ms
53,864 KB
testcase_10 AC 146 ms
54,112 KB
testcase_11 AC 126 ms
54,032 KB
testcase_12 AC 127 ms
53,884 KB
testcase_13 AC 128 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Study02 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String a = sc.nextLine();
		String [] q = a.split(" ");
		int [] z = new int[2];
		for(int i=0;i<q.length;i++){
			z[i] = Integer.parseInt(q[i]);
		}
		int asd = z[1] - z[0];
		if(asd < 0){
			System.out.println(asd);
		}else{
			System.out.println("+"+asd);
		}

	}

}
0