結果

問題 No.353 ヘイトプラス
ユーザー mitsuomitsuo
提出日時 2016-05-04 13:15:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 1,000 ms
コード長 563 bytes
コンパイル時間 1,804 ms
コンパイル使用メモリ 75,580 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-06-29 13:42:09
合計ジャッジ時間 3,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,120 KB
testcase_01 AC 97 ms
40,932 KB
testcase_02 AC 96 ms
41,092 KB
testcase_03 AC 107 ms
40,280 KB
testcase_04 AC 111 ms
39,884 KB
testcase_05 AC 107 ms
41,176 KB
testcase_06 AC 108 ms
41,236 KB
testcase_07 AC 108 ms
41,376 KB
testcase_08 AC 101 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String input = "";
		if (args.length == 0) {
			input = sc.nextLine();
		} else {
			input = args[0];
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static String solve(String in) {

		BigInteger bi = BigInteger.ZERO;
		bi = bi.add(BigInteger.valueOf(Long.valueOf(in.split(" ")[0])));
		bi = bi.add(BigInteger.valueOf(Long.valueOf(in.split(" ")[1])));

		return bi.toString();
	}
}
0