結果

問題 No.264 じゃんけん
ユーザー Flere0114Flere0114
提出日時 2016-02-10 14:32:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 426 bytes
コンパイル時間 3,343 ms
コンパイル使用メモリ 75,024 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-09-21 22:05:42
合計ジャッジ時間 4,849 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,948 KB
testcase_01 AC 122 ms
54,012 KB
testcase_02 AC 110 ms
53,516 KB
testcase_03 AC 120 ms
54,036 KB
testcase_04 AC 124 ms
53,864 KB
testcase_05 AC 105 ms
52,612 KB
testcase_06 AC 117 ms
54,004 KB
testcase_07 AC 121 ms
54,192 KB
testcase_08 AC 113 ms
53,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No264 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a, b;
        a = sc.nextInt();
        b = sc.nextInt();

        if(a == b){
            System.out.println("Drew");
        }else if(a - b == -1 || a - b == 2){
            System.out.println("Won");
        }else{
            System.out.println("Lost");
        }
    }
}
0