結果

問題 No.264 じゃんけん
ユーザー SaYaSaYa
提出日時 2015-11-06 00:14:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 2,311 bytes
コンパイル時間 3,532 ms
コンパイル使用メモリ 92,796 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-09-13 12:54:27
合計ジャッジ時間 5,469 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,204 KB
testcase_01 AC 133 ms
53,840 KB
testcase_02 AC 133 ms
53,748 KB
testcase_03 AC 134 ms
53,744 KB
testcase_04 AC 136 ms
54,104 KB
testcase_05 AC 133 ms
54,184 KB
testcase_06 AC 136 ms
53,860 KB
testcase_07 AC 120 ms
52,980 KB
testcase_08 AC 132 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Optional;
import java.util.Scanner;
import java.util.stream.Stream;

public class Main {

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        Hand myHand = Hand.of(Integer.parseInt(scanner.next())).get();
        Hand opponentHand = Hand.of(Integer.parseInt(scanner.next())).get();

        System.out.println(myHand.battle(opponentHand).toString());
    }

    private enum Hand {
        Rock(0) {
            @Override
            public BattleResult battle(Hand hand) {
                switch (hand) {
                    case Rock:
                        return BattleResult.Drew;
                    case Paper:
                        return BattleResult.Lost;
                    case Scissors:
                        return BattleResult.Won;
                    default:
                        return BattleResult.Unknown;
                }
            }
        },
        Scissors(1) {
            @Override
            public BattleResult battle(Hand hand) {
                switch (hand) {
                    case Rock:
                        return BattleResult.Lost;
                    case Paper:
                        return BattleResult.Won;
                    case Scissors:
                        return BattleResult.Drew;
                    default:
                        return BattleResult.Unknown;
                }
            }
        },
        Paper(2) {
            @Override
            public BattleResult battle(Hand hand) {
                switch (hand) {
                    case Rock:
                        return BattleResult.Won;
                    case Paper:
                        return BattleResult.Drew;
                    case Scissors:
                        return BattleResult.Lost;
                    default:
                        return BattleResult.Unknown;
                }
            }
        };

        private int num;

        Hand(int num) {
            this.num = num;
        }

        public static Optional<Hand> of(int num) {
            return Stream.of(values()).filter(e -> (e.num == num)).findFirst();
        }

        public abstract BattleResult battle(Hand hand);
    }

    private enum BattleResult {
        Won, Lost, Drew, Unknown
    }
}
0