結果
問題 | No.2086 A+B問題 |
ユーザー |
|
提出日時 | 2022-10-01 09:23:27 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 121 ms / 2,000 ms |
コード長 | 301 bytes |
コンパイル時間 | 1,841 ms |
コンパイル使用メモリ | 78,432 KB |
実行使用メモリ | 41,212 KB |
最終ジャッジ日時 | 2024-12-23 14:05:22 |
合計ジャッジ時間 | 5,065 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
import java.util.Scanner;import java.math.BigInteger;class Main{public static void main(String[] args){Scanner sc = new Scanner(System.in);BigInteger A = new BigInteger(sc.next());BigInteger B = new BigInteger(sc.next());System.out.println(A.add(B));}}