結果

問題 No.2414 2 KA 3 KA
ユーザー kusagame12kusagame12
提出日時 2023-11-25 16:24:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 5,191 ms
コンパイル使用メモリ 73,544 KB
実行使用メモリ 50,496 KB
最終ジャッジ日時 2024-09-26 10:56:02
合計ジャッジ時間 4,483 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
49,764 KB
testcase_01 AC 52 ms
49,852 KB
testcase_02 AC 48 ms
50,180 KB
testcase_03 AC 49 ms
50,072 KB
testcase_04 AC 49 ms
50,040 KB
testcase_05 AC 48 ms
50,252 KB
testcase_06 AC 48 ms
50,044 KB
testcase_07 AC 48 ms
49,932 KB
testcase_08 AC 49 ms
50,000 KB
testcase_09 AC 51 ms
50,184 KB
testcase_10 AC 51 ms
50,128 KB
testcase_11 AC 48 ms
50,176 KB
testcase_12 AC 48 ms
50,200 KB
testcase_13 AC 47 ms
49,848 KB
testcase_14 AC 47 ms
50,156 KB
testcase_15 AC 48 ms
50,276 KB
testcase_16 AC 47 ms
50,224 KB
testcase_17 AC 48 ms
50,120 KB
testcase_18 AC 51 ms
50,040 KB
testcase_19 AC 53 ms
50,496 KB
testcase_20 AC 51 ms
50,072 KB
testcase_21 AC 51 ms
50,236 KB
testcase_22 AC 48 ms
50,132 KB
testcase_23 AC 51 ms
50,196 KB
testcase_24 AC 52 ms
50,480 KB
testcase_25 AC 49 ms
50,252 KB
testcase_26 AC 50 ms
50,416 KB
testcase_27 AC 51 ms
50,196 KB
testcase_28 AC 51 ms
50,080 KB
testcase_29 AC 49 ms
49,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] str = br.readLine().split(" ");
        int a = Integer.parseInt(str[0]);
        int b = Integer.parseInt(str[1]);
        int c = Integer.parseInt(str[2]);
        
        int x = (a * b + a * c + b * c) * 2;
        int y = a * b * c;
        
        System.out.print(x > y ? 2 : 3);

    }

}
0