結果

問題 No.1057 素敵な日
ユーザー ShikaruuuuShikaruuuu
提出日時 2020-05-25 13:54:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 3,184 ms
コンパイル使用メモリ 75,168 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-10-13 02:03:25
合計ジャッジ時間 4,549 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 121 ms
41,088 KB
testcase_03 WA -
testcase_04 AC 110 ms
40,152 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class wonderfulDay {

    public static void main(String args[]) {
        Scanner scanner = new Scanner(System.in);
        int a = scanner.nextInt();
        int b = scanner.nextInt();

        int i = a + b - 3;
        System.out.println(i);
    }
}
0