結果

問題 No.264 じゃんけん
ユーザー nogisunnogisun
提出日時 2020-03-19 12:01:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 976 bytes
コンパイル時間 3,484 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-12-14 03:06:30
合計ジャッジ時間 4,958 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,108 KB
testcase_01 AC 130 ms
54,164 KB
testcase_02 AC 124 ms
53,980 KB
testcase_03 AC 128 ms
54,008 KB
testcase_04 AC 130 ms
54,092 KB
testcase_05 AC 138 ms
53,808 KB
testcase_06 AC 132 ms
54,028 KB
testcase_07 AC 131 ms
54,092 KB
testcase_08 AC 132 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No264{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int zibun = sc.nextInt();
        int aite = sc.nextInt();
        String result[][] = new String[3][3];
        for (int i=0; i<3; i++){
            for (int j=0; j<3; j++){
                switch (i-j+2){
                    case 4:
                        result[i][j] = "Won";
                        break;
                    case 3:
                        result[i][j] = "Lost";
                        break;
                    case 2:
                        result[i][j] = "Drew";
                        break;
                    case 1:
                        result[i][j] = "Won";
                        break;
                    case 0:
                        result[i][j] = "Lost";
                        break;
                }
            }
        }
        System.out.println(result[zibun][aite]);
    }
}
0