結果

問題 No.353 ヘイトプラス
ユーザー watarimaycry2watarimaycry2
提出日時 2020-12-18 23:21:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 352 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-09-21 09:30:20
合計ジャッジ時間 4,096 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,388 KB
testcase_01 AC 128 ms
53,984 KB
testcase_02 AC 132 ms
54,200 KB
testcase_03 AC 133 ms
53,900 KB
testcase_04 AC 132 ms
54,120 KB
testcase_05 AC 134 ms
53,988 KB
testcase_06 AC 132 ms
54,088 KB
testcase_07 AC 131 ms
53,808 KB
testcase_08 AC 131 ms
53,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*; import java.io.*; import java.math.*;
public class Main{
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		BigInteger L = new BigInteger(sc.next());
		L = L.add(new BigInteger(sc.next()));
		System.out.println(L.toString());
	}
	//Don't have to see. end------------------------------------------
}
0