結果

問題 No.3058 M + D Problem
ユーザー waganecowaganeco
提出日時 2020-04-01 21:32:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 1,959 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2024-06-27 09:05:45
合計ジャッジ時間 5,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,000 KB
testcase_01 AC 125 ms
41,480 KB
testcase_02 AC 126 ms
41,580 KB
testcase_03 AC 117 ms
40,908 KB
testcase_04 AC 121 ms
41,232 KB
testcase_05 AC 123 ms
41,384 KB
testcase_06 AC 112 ms
41,368 KB
testcase_07 AC 126 ms
41,408 KB
testcase_08 AC 123 ms
41,428 KB
testcase_09 AC 124 ms
41,536 KB
testcase_10 AC 125 ms
41,588 KB
testcase_11 AC 124 ms
41,116 KB
testcase_12 AC 106 ms
41,268 KB
testcase_13 WA -
testcase_14 AC 126 ms
41,536 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("㍆㌋㌉㌏㌉㌸㌾㌋㌞㌹㌅");
        }
        else if (A == 4 && B == 1){
            System.out.println(A - B);
        }
        else{
            System.out.println(A + B);
        }


        
    }
}
0