結果

問題 No.2239 Friday
ユーザー AsahiAsahi
提出日時 2023-03-10 21:28:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 507 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-09-18 03:39:59
合計ジャッジ時間 5,468 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,580 KB
testcase_01 AC 105 ms
53,516 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 120 ms
53,892 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 119 ms
53,892 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 126 ms
53,788 KB
testcase_13 AC 120 ms
53,964 KB
testcase_14 WA -
testcase_15 AC 122 ms
54,072 KB
testcase_16 AC 115 ms
54,072 KB
testcase_17 WA -
testcase_18 AC 119 ms
53,812 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int a = scanner.nextInt(); // アジフライの数
        int b = scanner.nextInt(); // エビフライの数
        int naturalDishes = Math.min(a, b) + (Math.abs(a - b) / 2); // 自然な皿の枚数
        int difference = Math.abs(a - b) % 2; // 自然な皿の枚数と不自然な皿の枚数の差
        System.out.println(difference);
    }
}
0