結果

問題 No.264 じゃんけん
ユーザー kaoetayakaoetaya
提出日時 2016-12-07 00:03:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 1,541 bytes
コンパイル時間 3,507 ms
コンパイル使用メモリ 78,312 KB
実行使用メモリ 41,132 KB
最終ジャッジ日時 2024-11-28 03:19:26
合計ジャッジ時間 4,972 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,008 KB
testcase_01 AC 97 ms
39,476 KB
testcase_02 AC 105 ms
39,860 KB
testcase_03 AC 112 ms
41,132 KB
testcase_04 AC 105 ms
40,140 KB
testcase_05 AC 103 ms
39,452 KB
testcase_06 AC 109 ms
40,092 KB
testcase_07 AC 105 ms
40,056 KB
testcase_08 AC 102 ms
40,092 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