結果

問題 No.264 じゃんけん
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 20:48:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 414 bytes
コンパイル時間 2,226 ms
コンパイル使用メモリ 74,688 KB
実行使用メモリ 41,112 KB
最終ジャッジ日時 2024-11-25 21:35:09
合計ジャッジ時間 3,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,800 KB
testcase_01 AC 115 ms
41,112 KB
testcase_02 AC 106 ms
40,984 KB
testcase_03 AC 107 ms
40,184 KB
testcase_04 AC 94 ms
39,860 KB
testcase_05 AC 104 ms
41,060 KB
testcase_06 AC 99 ms
39,888 KB
testcase_07 AC 107 ms
40,816 KB
testcase_08 AC 108 ms
41,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int z = k-n;
        if(z==0){
            System.out.println("Drew");
        }else if(z==1 || z==-2){
            System.out.println("Won");
        }else{
            System.out.println("Lost");
        }
    }
}
0