結果

問題 No.264 じゃんけん
ユーザー l1267976l1267976
提出日時 2017-03-07 22:10:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 636 bytes
コンパイル時間 3,462 ms
コンパイル使用メモリ 75,212 KB
実行使用メモリ 41,840 KB
最終ジャッジ日時 2024-06-23 18:00:09
合計ジャッジ時間 5,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,252 KB
testcase_01 AC 131 ms
41,152 KB
testcase_02 AC 133 ms
41,500 KB
testcase_03 AC 131 ms
41,420 KB
testcase_04 AC 130 ms
41,840 KB
testcase_05 AC 131 ms
41,408 KB
testcase_06 AC 132 ms
41,280 KB
testcase_07 AC 133 ms
41,388 KB
testcase_08 AC 132 ms
41,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No264 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();

        int diff = Math.abs(n - k);

        switch (diff) {
        case 0:
            System.out.println("Drew");
            break;
        case 1:
            if (n < k) System.out.println("Won");
            else System.out.println("Lost");
            break;
        case 2:
            if (n < k) System.out.println("Lost");
            else System.out.println("Won");
            break;
        }

        sc.close();
    }

}
0