結果

問題 No.264 じゃんけん
ユーザー GrenacheGrenache
提出日時 2015-08-07 22:30:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 77,000 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-07-18 05:10:35
合計ジャッジ時間 4,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,928 KB
testcase_01 AC 106 ms
52,828 KB
testcase_02 AC 120 ms
54,060 KB
testcase_03 AC 122 ms
54,116 KB
testcase_04 AC 122 ms
54,024 KB
testcase_05 AC 116 ms
54,140 KB
testcase_06 AC 118 ms
54,244 KB
testcase_07 AC 118 ms
54,232 KB
testcase_08 AC 104 ms
52,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder264 {

    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 ((n < 2 && n + 1 == k) || (n == 2 && k == 0)) {
        	System.out.println("Won");
        } else {
        	System.out.println("Lost");
        }

        sc.close();
    }
}
0