結果

問題 No.264 じゃんけん
ユーザー kaoetayakaoetaya
提出日時 2016-12-07 00:03:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 1,541 bytes
コンパイル時間 3,606 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-05-06 01:26:26
合計ジャッジ時間 5,790 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,900 KB
testcase_01 AC 133 ms
41,128 KB
testcase_02 AC 133 ms
41,300 KB
testcase_03 AC 133 ms
41,428 KB
testcase_04 AC 134 ms
41,216 KB
testcase_05 AC 137 ms
41,156 KB
testcase_06 AC 133 ms
41,368 KB
testcase_07 AC 129 ms
41,236 KB
testcase_08 AC 130 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        int n=sc.nextInt(),k=sc.nextInt();

        if(n == 0){
            switch(k){
                case 0:
                    System.out.println("Drew");
                    break;

                case 1:
                    System.out.println("Won");
                    break;

                case 2:
                    System.out.println("Lost");
                    break;

                default:
                    break;
            }
        }
        else if(n == 1){
            switch(k){
                case 0:
                    System.out.println("Lost");
                    break;

                case 1:
                    System.out.println("Drew");
                    break;

                case 2:
                    System.out.println("Won");
                    break;

                default:
                    break;
            }
        }
        else if(n == 2){
            switch(k){
                case 0:
                    System.out.println("Won");
                    break;

                case 1:
                    System.out.println("Lost");
                    break;

                case 2:
                    System.out.println("Drew");
                    break;

                default:
                    break;
            }
        }
    }
}
0