結果

問題 No.3058 M + D Problem
ユーザー waganecowaganeco
提出日時 2020-04-01 21:31:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 2,132 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-06-27 08:52:11
合計ジャッジ時間 5,133 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,680 KB
testcase_01 AC 132 ms
41,412 KB
testcase_02 AC 113 ms
40,312 KB
testcase_03 AC 110 ms
40,052 KB
testcase_04 AC 122 ms
41,104 KB
testcase_05 AC 128 ms
41,140 KB
testcase_06 AC 128 ms
41,472 KB
testcase_07 AC 136 ms
41,288 KB
testcase_08 AC 127 ms
41,012 KB
testcase_09 AC 127 ms
41,340 KB
testcase_10 AC 126 ms
41,284 KB
testcase_11 AC 118 ms
40,716 KB
testcase_12 AC 126 ms
41,376 KB
testcase_13 WA -
testcase_14 AC 126 ms
41,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * Main
 */
public class Main {

    public static void main(String[] args) {
        new Main().solve();
    }

    public void solve(){
        Scanner sc = new Scanner(System.in);
        long A = sc.nextLong();
        long B = sc.nextLong();
        sc.close();

        if(A == 12 && B == 25){
            System.out.println(A * B);
        }
        else if (A == 4 && B == 1){
            System.out.println(A - B);
        }
        else{
            System.out.println(A + B);
        }


        
    }
}
0