結果

問題 No.353 ヘイトプラス
ユーザー 37zigen37zigen
提出日時 2016-04-01 22:23:06
言語 Java19
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 225 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 71,424 KB
実行使用メモリ 56,264 KB
最終ジャッジ日時 2023-09-11 23:58:37
合計ジャッジ時間 3,787 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
55,844 KB
testcase_01 AC 117 ms
56,108 KB
testcase_02 AC 119 ms
56,028 KB
testcase_03 AC 120 ms
55,796 KB
testcase_04 AC 116 ms
55,972 KB
testcase_05 AC 116 ms
56,264 KB
testcase_06 AC 112 ms
55,688 KB
testcase_07 AC 117 ms
55,988 KB
testcase_08 AC 118 ms
56,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder353;
import java.util.Scanner;
public class Main {
	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