結果

問題 No.264 じゃんけん
ユーザー kurobei72kurobei72
提出日時 2018-01-18 21:33:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 833 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 74,888 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-06-06 18:23:58
合計ジャッジ時間 3,462 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,920 KB
testcase_01 AC 98 ms
41,356 KB
testcase_02 AC 123 ms
41,168 KB
testcase_03 AC 120 ms
41,316 KB
testcase_04 AC 115 ms
40,132 KB
testcase_05 AC 103 ms
40,932 KB
testcase_06 AC 106 ms
41,708 KB
testcase_07 AC 116 ms
41,176 KB
testcase_08 AC 111 ms
41,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) throws Exception {
         Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        
        if (a == b)  {
            System.out.println("Drew");
        } else if (a == 0) {
            if (b == 1) {
                System.out.println("Won");
            } else{
                System.out.println("Lost");
            }
        } else if (a == 1) {
            if (b == 0) {
                System.out.println("Lost");
            } else{
                System.out.println("Won");
            }
        } else if (a == 2) {
            if (b == 0) {
                System.out.println("Won");
            } else{
                System.out.println("Lost");
            }
        }
    }
}
0