結果

問題 No.353 ヘイトプラス
ユーザー ちよちゃんちよちゃん
提出日時 2016-08-01 01:57:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 295 bytes
コンパイル時間 4,799 ms
コンパイル使用メモリ 71,488 KB
実行使用メモリ 56,348 KB
最終ジャッジ日時 2023-09-16 23:45:00
合計ジャッジ時間 5,056 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,692 KB
testcase_01 AC 119 ms
55,892 KB
testcase_02 AC 122 ms
55,840 KB
testcase_03 AC 119 ms
55,676 KB
testcase_04 AC 123 ms
56,232 KB
testcase_05 AC 122 ms
56,348 KB
testcase_06 AC 119 ms
56,152 KB
testcase_07 AC 119 ms
55,896 KB
testcase_08 AC 120 ms
55,996 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