結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 120 ms
41,204 KB
testcase_03 WA -
testcase_04 AC 119 ms
41,296 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