結果

問題 No.264 じゃんけん
ユーザー Ryota EnokidoRyota Enokido
提出日時 2018-12-09 20:45:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 462 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-09-16 15:32:29
合計ジャッジ時間 4,085 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.Scanner;
 
 public class Main {
     public static void main(String[] args) {
         Scanner sc = new Scanner(System.in);
         
         int mine = sc.nextInt();
         int your = sc.nextInt();
         
         if(mine==your){
             System.out.println("Drew");
         }else if(mine-your==1 || mine-your==-2){
             System.out.println("Lose");
         }else{
             System.out.println("Won");
         }
     }
 }
0