結果

問題 No.264 じゃんけん
ユーザー hj5ln8kbDM8t2fFhj5ln8kbDM8t2fF
提出日時 2019-06-23 14:34:22
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 571 bytes
コンパイル時間 2,349 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-12-26 14:00:25
合計ジャッジ時間 4,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.*;

class Zyanken{
    public void kekka(int a,int b){
        if(a==b){
            System.out.println("Drew");
        }
        else if((a==2&&b==0)||(a==1&&b==2)||(a==0&&b==1)){
            System.out.println("Win");
        }
        else{
            System.out.println("Lose");
        }
    } 
}

public class Main{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        int me = sc.nextInt();
        int you = sc.nextInt();
        
        Zyanken zy = new Zyanken();
        zy.kekka(me,you);
    }
}
0