結果

問題 No.264 じゃんけん
ユーザー Ryota EnokidoRyota Enokido
提出日時 2018-12-09 20:46:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 462 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 74,212 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-09-16 15:32:33
合計ジャッジ時間 3,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,316 KB
testcase_01 AC 130 ms
41,480 KB
testcase_02 AC 130 ms
41,108 KB
testcase_03 AC 131 ms
40,972 KB
testcase_04 AC 128 ms
41,168 KB
testcase_05 AC 130 ms
41,332 KB
testcase_06 AC 134 ms
41,320 KB
testcase_07 AC 128 ms
41,296 KB
testcase_08 AC 129 ms
41,468 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("Lost");
         }else{
             System.out.println("Won");
         }
     }
 }
0