結果

問題 No.264 じゃんけん
ユーザー cande398cande398
提出日時 2017-10-16 00:25:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 353 bytes
コンパイル時間 2,864 ms
コンパイル使用メモリ 75,824 KB
実行使用メモリ 54,036 KB
最終ジャッジ日時 2024-11-17 18:51:55
合計ジャッジ時間 3,944 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,036 KB
testcase_01 AC 120 ms
41,116 KB
testcase_02 AC 102 ms
39,808 KB
testcase_03 AC 123 ms
41,104 KB
testcase_04 AC 121 ms
41,232 KB
testcase_05 AC 119 ms
41,056 KB
testcase_06 AC 116 ms
40,928 KB
testcase_07 AC 120 ms
41,320 KB
testcase_08 AC 116 ms
41,084 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();
        if(N==K)System.out.println("Drew");
        else if(K-N == 1 || N == 2 && K == 0)System.out.println("Won");
        else System.out.println("Lost");
    }
}
0