結果
問題 | No.2086 A+B問題 |
ユーザー |
|
提出日時 | 2022-09-30 22:57:51 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 133 ms / 2,000 ms |
コード長 | 357 bytes |
コンパイル時間 | 2,073 ms |
コンパイル使用メモリ | 73,556 KB |
実行使用メモリ | 41,232 KB |
最終ジャッジ日時 | 2024-12-23 00:42:00 |
合計ジャッジ時間 | 5,564 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
/*Name: codingmaster008Date-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));}}