結果

問題 No.264 じゃんけん
ユーザー マサマサ
提出日時 2022-02-10 17:15:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 821 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 56,044 KB
最終ジャッジ日時 2024-06-25 23:49:07
合計ジャッジ時間 4,103 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
56,044 KB
testcase_01 AC 137 ms
54,072 KB
testcase_02 AC 137 ms
53,856 KB
testcase_03 AC 135 ms
53,920 KB
testcase_04 AC 137 ms
53,792 KB
testcase_05 AC 136 ms
53,764 KB
testcase_06 AC 143 ms
54,140 KB
testcase_07 AC 142 ms
53,704 KB
testcase_08 AC 138 ms
53,844 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();
		// グー(0) チョキ(1) パー(2)
		
		if (n == 0) {
			if (k == 0) {
				System.out.println("Drew");
			} else if (k == 1) {
				System.out.println("Won");
			} else if (k == 2) {
				System.out.println("Lost");
			}
		} else if (n == 1) {
			if (k == 0) {
				System.out.println("Lost");
			} else if (k == 1) {
				System.out.println("Drew");
			} else if (k == 2) {
				System.out.println("Won");
			}
		} else if (n == 2) {
			if (k == 0) {
				System.out.println("Won");
			} else if (k == 1) {
				System.out.println("Lost");
			} else if (k == 2) {
				System.out.println("Drew");
			}
		}
		
		sc.close();
	}
}
0