結果

問題 No.3062 A + B
ユーザー kusagame12kusagame12
提出日時 2023-11-06 21:55:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 2,645 ms
コンパイル使用メモリ 85,744 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-09-25 23:08:48
合計ジャッジ時間 4,655 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,208 KB
testcase_01 AC 145 ms
41,080 KB
testcase_02 AC 144 ms
41,236 KB
testcase_03 AC 144 ms
41,088 KB
testcase_04 AC 145 ms
41,196 KB
testcase_05 AC 145 ms
41,080 KB
testcase_06 AC 146 ms
41,372 KB
testcase_07 AC 141 ms
41,064 KB
testcase_08 AC 138 ms
41,024 KB
testcase_09 AC 131 ms
41,336 KB
testcase_10 AC 127 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc = new Scanner(System.in);
        String a = sc.next();
        String b = sc.next();
        
        String ans = "";
        if(a.equals("0") || a.equals("-0") ){
            ans = b;
        }else if(b.charAt(0) == '-'){
            ans = String.valueOf(Long.parseLong(a) + Long.parseLong(b));
        }else{
            ans = a + b;
        }
        
        System.out.println(ans);
    }
}
0