結果

問題 No.353 ヘイトプラス
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 20:18:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 218 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 73,764 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-07-03 22:37:48
合計ジャッジ時間 3,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,008 KB
testcase_01 AC 126 ms
54,108 KB
testcase_02 AC 113 ms
53,004 KB
testcase_03 AC 127 ms
54,188 KB
testcase_04 AC 123 ms
54,252 KB
testcase_05 AC 129 ms
53,908 KB
testcase_06 AC 127 ms
54,068 KB
testcase_07 AC 115 ms
52,748 KB
testcase_08 AC 125 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no353{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int a,b;
		a=stdIn.nextInt();
		b=stdIn.nextInt();
		System.out.print(-(-a-b));
	}
}
0