結果

問題 No.3062 A + B
ユーザー kusagame12kusagame12
提出日時 2023-11-06 21:53:02
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 506 bytes
コンパイル時間 3,036 ms
コンパイル使用メモリ 77,244 KB
実行使用メモリ 54,596 KB
最終ジャッジ日時 2024-09-25 23:08:34
合計ジャッジ時間 4,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,732 KB
testcase_01 AC 126 ms
40,772 KB
testcase_02 AC 111 ms
39,748 KB
testcase_03 AC 126 ms
41,232 KB
testcase_04 AC 128 ms
40,992 KB
testcase_05 AC 126 ms
41,236 KB
testcase_06 RE -
testcase_07 AC 122 ms
41,024 KB
testcase_08 AC 122 ms
41,136 KB
testcase_09 AC 127 ms
41,200 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {

        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(Integer.parseInt(a) + Integer.parseInt(b));
        }else{
            ans = a + b;
        }
        
        System.out.println(ans);
    }
}
0