結果

問題 No.264 じゃんけん
ユーザー gomagoma
提出日時 2017-09-14 21:56:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 707 bytes
コンパイル時間 2,653 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-11-07 20:03:15
合計ジャッジ時間 4,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,144 KB
testcase_01 AC 129 ms
41,200 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 127 ms
41,436 KB
testcase_05 AC 130 ms
41,196 KB
testcase_06 AC 114 ms
39,848 KB
testcase_07 WA -
testcase_08 AC 128 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		if (n == 0) {
			if (k == 1) {
				System.out.println("Won");
			} else if (n == k) {
				System.out.println("Drew");
			} else {
				System.out.println("Lose");
			}
		} else if (n == 1) {
			if (k == 2) {
				System.out.println("Won");
			} else if (n == k) {
				System.out.println("Drew");
			} else {
				System.out.println("Lose");
			}
		} else if (n == 2) {
			if (k == 0) {
				System.out.println("Won");
			} else if (n == k) {
				System.out.println("Drew");
			} else {
				System.out.println("Lose");
			}
		}

	}
}
0