結果

問題 No.353 ヘイトプラス
ユーザー DemocoDemoco
提出日時 2016-04-09 02:27:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 215 bytes
コンパイル時間 2,577 ms
コンパイル使用メモリ 73,796 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-06-29 13:31:31
合計ジャッジ時間 3,884 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,276 KB
testcase_01 AC 131 ms
41,480 KB
testcase_02 AC 131 ms
41,180 KB
testcase_03 AC 128 ms
41,028 KB
testcase_04 AC 132 ms
41,268 KB
testcase_05 AC 133 ms
41,352 KB
testcase_06 AC 131 ms
41,196 KB
testcase_07 AC 133 ms
41,296 KB
testcase_08 AC 132 ms
41,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No353_Yukicoder {

	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)));
	}
	
}
0