結果

問題 No.264 じゃんけん
ユーザー tsunabittsunabit
提出日時 2018-03-31 23:20:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 1,340 bytes
コンパイル時間 4,163 ms
コンパイル使用メモリ 75,056 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-06-26 03:45:29
合計ジャッジ時間 5,950 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,908 KB
testcase_01 AC 128 ms
53,612 KB
testcase_02 AC 127 ms
53,992 KB
testcase_03 AC 128 ms
53,940 KB
testcase_04 AC 128 ms
53,836 KB
testcase_05 AC 126 ms
54,236 KB
testcase_06 AC 127 ms
53,800 KB
testcase_07 AC 127 ms
53,816 KB
testcase_08 AC 126 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// 問題文
// 自分と相手がじゃんけんをする。
// じゃんけんの結果を標準出力に出力してください。
// 結果は、自分が勝ったら「Won」、自分が負けたら「Lost」、引き分けなら「Drew」を出力してください。
// 入力
// 0 0
// ぐー, ちょき, ぱーをそれぞれ 0, 1, 2とし、1つ目に自分のが2つ目に相手のが与えられます。
public class No264 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        int j = sc.nextInt();
        int a = sc.nextInt();
        if(j == a) {
            System.out.println("Drew");
        }else if(j == 0) {
            if(a == 1) {
                System.out.println("Won");
            }else if(a == 2) {
                System.out.println("Lost");
            }
        }else if(j == 1) {
            if(a == 0) {
                System.out.println("Lost");
            }else if(a == 2) {
                System.out.println("Won");
            }
        }else if(j == 2) {
            if(a == 0) {
                System.out.println("Won");
            }else if(a == 1) {
                System.out.println("Lost");
            }
        }
    }
}
0