結果

問題 No.264 じゃんけん
ユーザー ikawaiikawai
提出日時 2023-09-04 11:04:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 795 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 53,940 KB
最終ジャッジ日時 2024-06-22 09:56:24
合計ジャッジ時間 4,177 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,888 KB
testcase_01 AC 118 ms
53,896 KB
testcase_02 AC 106 ms
52,896 KB
testcase_03 AC 108 ms
52,620 KB
testcase_04 AC 120 ms
53,848 KB
testcase_05 AC 118 ms
53,744 KB
testcase_06 AC 117 ms
53,808 KB
testcase_07 AC 119 ms
53,940 KB
testcase_08 AC 121 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Wandbox
{
    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 == 0) {
    			System.out.println("Drew");
    		} else if (k == 1) {
    			System.out.println("Won");
    		} else {
    			System.out.println("Lost");
    		}
    	} else if (n == 1) {
    		if (k == 0) {
    			System.out.println("Lost");
    		} else if (k == 1) {
    			System.out.println("Drew");
    		} else {
    			System.out.println("Won");
    		}
    	} else {
    		if (k == 0) {
    			System.out.println("Won");
    		} else if (k == 1) {
    			System.out.println("Lost");
    		} else {
    			System.out.println("Drew");
    		}
    	}
    	
    }
}
0