結果

問題 No.3062 A + B
ユーザー kusagame12kusagame12
提出日時 2023-11-06 21:54:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 528 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 76,032 KB
実行使用メモリ 41,268 KB
最終ジャッジ日時 2024-09-25 23:08:40
合計ジャッジ時間 4,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,108 KB
testcase_01 AC 119 ms
41,008 KB
testcase_02 AC 116 ms
40,980 KB
testcase_03 AC 109 ms
39,988 KB
testcase_04 AC 100 ms
39,392 KB
testcase_05 AC 122 ms
41,008 KB
testcase_06 AC 113 ms
40,772 KB
testcase_07 AC 115 ms
41,136 KB
testcase_08 AC 116 ms
41,172 KB
testcase_09 AC 115 ms
40,940 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

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")){
            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