結果

問題 No.3058 M + D Problem
ユーザー waganecowaganeco
提出日時 2020-04-01 21:27:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 459 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 73,996 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-06-27 08:16:47
合計ジャッジ時間 5,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,004 KB
testcase_01 AC 130 ms
41,112 KB
testcase_02 AC 121 ms
41,108 KB
testcase_03 AC 128 ms
41,416 KB
testcase_04 WA -
testcase_05 AC 128 ms
40,984 KB
testcase_06 AC 131 ms
41,048 KB
testcase_07 AC 129 ms
41,504 KB
testcase_08 AC 129 ms
41,392 KB
testcase_09 AC 129 ms
41,424 KB
testcase_10 AC 131 ms
41,260 KB
testcase_11 AC 128 ms
41,168 KB
testcase_12 AC 128 ms
41,276 KB
testcase_13 WA -
testcase_14 AC 130 ms
41,172 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("1");
        }
        else{
            System.out.println(A + B);
        }


        
    }
}
0