結果
問題 | No.353 ヘイトプラス |
ユーザー |
|
提出日時 | 2017-04-17 17:01:50 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 137 ms / 1,000 ms |
コード長 | 313 bytes |
コンパイル時間 | 2,139 ms |
コンパイル使用メモリ | 74,248 KB |
実行使用メモリ | 41,544 KB |
最終ジャッジ日時 | 2024-07-03 22:28:34 |
合計ジャッジ時間 | 4,052 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
ソースコード
import java.math.BigInteger;import java.util.Scanner;public 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));}}