結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
49,812 KB
testcase_01 AC 47 ms
49,816 KB
testcase_02 AC 45 ms
50,148 KB
testcase_03 AC 46 ms
50,052 KB
testcase_04 AC 46 ms
49,812 KB
testcase_05 AC 47 ms
50,168 KB
testcase_06 AC 48 ms
50,152 KB
testcase_07 AC 45 ms
50,100 KB
testcase_08 AC 45 ms
50,144 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