結果

問題 No.353 ヘイトプラス
ユーザー watarimaycry2watarimaycry2
提出日時 2020-12-18 23:21:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 352 bytes
コンパイル時間 2,767 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 57,596 KB
最終ジャッジ日時 2023-10-21 08:27:28
合計ジャッジ時間 4,778 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
57,468 KB
testcase_01 AC 135 ms
57,572 KB
testcase_02 AC 137 ms
57,000 KB
testcase_03 AC 134 ms
57,456 KB
testcase_04 AC 133 ms
57,476 KB
testcase_05 AC 137 ms
57,300 KB
testcase_06 AC 130 ms
57,508 KB
testcase_07 AC 133 ms
57,444 KB
testcase_08 AC 132 ms
57,596 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