結果

問題 No.353 ヘイトプラス
ユーザー ちよちゃんちよちゃん
提出日時 2016-08-01 01:57:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 295 bytes
コンパイル時間 3,654 ms
コンパイル使用メモリ 73,832 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-07-03 22:17:51
合計ジャッジ時間 4,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,392 KB
testcase_01 AC 120 ms
41,400 KB
testcase_02 AC 123 ms
41,364 KB
testcase_03 AC 126 ms
41,304 KB
testcase_04 AC 125 ms
41,152 KB
testcase_05 AC 125 ms
41,164 KB
testcase_06 AC 127 ms
41,676 KB
testcase_07 AC 110 ms
39,852 KB
testcase_08 AC 123 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class yuki353 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner scan = new Scanner(System.in);
		int a = scan.nextInt();
		int b = scan.nextInt();
		scan.close();
		System.out.println(a-(-b));
	}

}
0