結果

問題 No.264 じゃんけん
ユーザー ryunocchiryunocchi
提出日時 2019-04-07 00:23:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 474 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-06-25 06:33:31
合計ジャッジ時間 3,470 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,040 KB
testcase_01 AC 102 ms
39,980 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 116 ms
40,812 KB
testcase_05 AC 102 ms
40,044 KB
testcase_06 AC 119 ms
41,208 KB
testcase_07 WA -
testcase_08 AC 116 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        if(a == b){
          System.out.println("Drew");
          return;
        }
        if(b-a < 0){
          if(a == 2 && b == 0) {
            System.out.println("Won");
            return;
          }else System.out.println("Lose");
        }else System.out.println("Won");
    }
}
0