結果

問題 No.264 じゃんけん
ユーザー RyanakRyanak
提出日時 2017-09-07 21:49:35
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 937 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-11-07 11:15:48
合計ジャッジ時間 3,844 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int x=sc.nextInt();
        int y=sc.nextInt();

        if (y == 0) {
            if (x == 0)
                System.out.println("Drew");
            else if(x == 1)
                System.out.println("Won");
            else if(x == 2)
                System.out.println("Lost");
        }
        else if (y == 1){
            if (x == 0)
                System.out.println("Lost");
            else if(x == 1)
                System.out.println("Drew");
            else if(x == 2)
                System.out.println("Won");
        }
        else if (y == 2){
            if (x == 0)
                System.out.println("Won");
            else if(x == 1)
                System.out.println("Lost");
            else if(x == 2)
                System.out.println("Drew");
        }
    }
}
0