結果

問題 No.2086 A+B問題
ユーザー coding master008coding master008
提出日時 2022-09-30 22:57:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 1,770 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-06-02 06:27:40
合計ジャッジ時間 4,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
41,504 KB
testcase_01 AC 113 ms
41,204 KB
testcase_02 AC 114 ms
41,112 KB
testcase_03 AC 105 ms
40,048 KB
testcase_04 AC 113 ms
41,212 KB
testcase_05 AC 103 ms
40,316 KB
testcase_06 AC 105 ms
41,372 KB
testcase_07 AC 100 ms
41,204 KB
testcase_08 AC 118 ms
41,572 KB
testcase_09 AC 106 ms
41,104 KB
testcase_10 AC 116 ms
41,124 KB
testcase_11 AC 105 ms
39,960 KB
testcase_12 AC 115 ms
41,544 KB
testcase_13 AC 117 ms
41,364 KB
testcase_14 AC 107 ms
40,224 KB
testcase_15 AC 103 ms
41,184 KB
testcase_16 AC 110 ms
41,384 KB
testcase_17 AC 117 ms
41,100 KB
testcase_18 AC 118 ms
41,384 KB
testcase_19 AC 117 ms
41,364 KB
testcase_20 AC 106 ms
40,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* 
Name: codingmaster008
Date-Time :30/09/2022 07:20:16 PM
*/

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

public class Main {
public static void main(String args[]) {
	
Scanner s=new Scanner(System.in);
String a=s.nextLine(),b=s.nextLine();
BigInteger x=new BigInteger(a),y=new BigInteger(b);
System.out.println((BigInteger)(x).add(y));
}}
0