結果

問題 No.264 じゃんけん
ユーザー RyanakRyanak
提出日時 2017-09-07 21:51:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 937 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-11-07 11:16:22
合計ジャッジ時間 4,075 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,128 KB
testcase_01 AC 136 ms
54,036 KB
testcase_02 AC 138 ms
53,968 KB
testcase_03 AC 137 ms
53,816 KB
testcase_04 AC 138 ms
53,784 KB
testcase_05 AC 140 ms
53,632 KB
testcase_06 AC 138 ms
54,208 KB
testcase_07 AC 135 ms
54,160 KB
testcase_08 AC 137 ms
53,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int y=sc.nextInt();
        int x=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