結果

問題 No.264 じゃんけん
ユーザー GchansanjouGchansanjou
提出日時 2018-02-11 14:04:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 1,048 bytes
コンパイル時間 3,281 ms
コンパイル使用メモリ 76,656 KB
実行使用メモリ 36,896 KB
最終ジャッジ日時 2024-11-15 22:20:52
合計ジャッジ時間 4,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,896 KB
testcase_01 AC 50 ms
36,760 KB
testcase_02 AC 53 ms
36,748 KB
testcase_03 AC 50 ms
36,700 KB
testcase_04 AC 51 ms
36,884 KB
testcase_05 AC 50 ms
36,412 KB
testcase_06 AC 51 ms
36,664 KB
testcase_07 AC 51 ms
36,700 KB
testcase_08 AC 50 ms
36,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00264 {

	public static void main(String[] args) {

		BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));

		String[] input = new String[2];

		try {
			input = bufferedReader.readLine().split(" ");

			int me = Integer.parseInt(input[0]);
			int enemy = Integer.parseInt(input[1]);

			String ans = ganken(me,enemy);

			System.out.println(ans);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	public static String ganken(int me, int enemy) {
		if (me == 0) {
			if (enemy == 0) {
				return "Drew";
			} else if (enemy == 1) {
				return "Won";
			} else {
				return "Lost";
			}
		} else if (me == 1) {
			if (enemy == 0) {
				return "Lost";
			} else if (enemy == 1) {
				return "Drew";
			} else {
				return "Won";
			}
		} else {
			if (enemy == 0) {
				return "Won";
			} else if (enemy == 1) {
				return "Lost";
			} else {
				return "Drew";
			}
		}
	}

}
0