結果

問題 No.353 ヘイトプラス
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 14:44:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 218 bytes
コンパイル時間 3,165 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 41,168 KB
最終ジャッジ日時 2024-07-03 22:19:04
合計ジャッジ時間 4,654 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,124 KB
testcase_01 AC 106 ms
39,884 KB
testcase_02 AC 124 ms
41,168 KB
testcase_03 AC 116 ms
41,152 KB
testcase_04 AC 100 ms
39,848 KB
testcase_05 AC 109 ms
40,756 KB
testcase_06 AC 117 ms
41,072 KB
testcase_07 AC 97 ms
40,000 KB
testcase_08 AC 96 ms
40,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int a = sc.nextInt(), b = sc.nextInt();
		System.out.println(Math.addExact(a, b));
	}
}
0