結果

問題 No.1934 Four Fruits
ユーザー sysnote8mainsysnote8main
提出日時 2023-02-22 20:09:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 857 bytes
コンパイル時間 3,739 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 54,568 KB
最終ジャッジ日時 2024-07-22 20:58:48
合計ジャッジ時間 5,890 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,844 KB
testcase_01 AC 130 ms
54,088 KB
testcase_02 AC 132 ms
54,068 KB
testcase_03 AC 140 ms
54,052 KB
testcase_04 WA -
testcase_05 AC 140 ms
54,100 KB
testcase_06 AC 132 ms
54,024 KB
testcase_07 AC 131 ms
54,568 KB
testcase_08 AC 131 ms
54,172 KB
testcase_09 AC 133 ms
53,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class four_fruits {
  public static void main(String[] args) {
    boolean[] bools = { false, false, false, false };
    Scanner sc = new Scanner(System.in);
    int a = sc.nextInt();
    int b = sc.nextInt();
    int c = sc.nextInt();
    sc.close();
    bools[a] = true;
    bools[b] = true;
    bools[c] = true;
    int cnt = 0;
    for (boolean i : bools) {
      if (i) {
        cnt++;
      }
    }
    int out = 0;
    switch (cnt) {
      case 1:
        out = a;
        break;
      case 2:
        if (a == b) {
          out = c;
        } else if (b == c) {
          out = a;
        } else {
          out = b;
        }
        break;
      case 3:
        for (int i = 0; i < 3; i++) {
          if (bools[i] == false) {
            out = i;
          }
        }
    }
    System.out.println(out);
  }
}
0