結果

問題 No.383 レーティング
ユーザー GoyotanGoyotan
提出日時 2016-07-18 16:07:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 3,629 ms
コンパイル使用メモリ 76,212 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-10-15 16:58:13
合計ジャッジ時間 6,323 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
53,928 KB
testcase_01 AC 130 ms
53,868 KB
testcase_02 AC 131 ms
53,912 KB
testcase_03 AC 146 ms
53,740 KB
testcase_04 AC 130 ms
54,080 KB
testcase_05 AC 149 ms
54,052 KB
testcase_06 AC 148 ms
53,996 KB
testcase_07 AC 149 ms
54,236 KB
testcase_08 AC 128 ms
54,080 KB
testcase_09 AC 147 ms
54,060 KB
testcase_10 AC 150 ms
54,120 KB
testcase_11 AC 130 ms
53,992 KB
testcase_12 AC 130 ms
53,872 KB
testcase_13 AC 130 ms
54,008 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 if(asd == 0){
			System.out.println("0");
		}else{
			System.out.println("+"+asd);
		}

	}

}
0