結果

問題 No.353 ヘイトプラス
ユーザー nCk_cvnCk_cv
提出日時 2016-07-01 18:20:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 108 ms / 1,000 ms
コード長 404 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 76,340 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-06-29 14:02:38
合計ジャッジ時間 3,569 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
54,084 KB
testcase_01 AC 95 ms
52,620 KB
testcase_02 AC 104 ms
54,132 KB
testcase_03 AC 107 ms
54,384 KB
testcase_04 AC 95 ms
52,508 KB
testcase_05 AC 106 ms
54,104 KB
testcase_06 AC 97 ms
53,348 KB
testcase_07 AC 108 ms
54,132 KB
testcase_08 AC 96 ms
52,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.math.BigDecimal;
import java.util.*;


public class Main {
	static int[] vy = {1,0,-1,0};
	static int[] vx = {0,1,0,-1};
	public static void main(String[] args) {	
		Scanner sc = new Scanner(System.in);
		PrintWriter out = new PrintWriter(System.out);
		Integer A = new Integer(sc.next());
		Integer B = new Integer(sc.next());
		System.out.println(Integer.sum(A, B));
	}
}
0