結果

問題 No.264 じゃんけん
ユーザー k__umek__ume
提出日時 2019-04-28 19:04:56
言語 Java
(openjdk 23)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 671 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 75,116 KB
実行使用メモリ 50,356 KB
最終ジャッジ日時 2024-12-17 18:38:38
合計ジャッジ時間 3,015 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,180 KB
testcase_01 AC 52 ms
50,356 KB
testcase_02 AC 54 ms
50,236 KB
testcase_03 AC 51 ms
49,900 KB
testcase_04 AC 54 ms
50,184 KB
testcase_05 AC 52 ms
50,352 KB
testcase_06 AC 52 ms
49,908 KB
testcase_07 AC 51 ms
50,336 KB
testcase_08 AC 52 ms
49,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static void main(String... args) throws IOException {
        try (BufferedReader reader = new BufferedReader(new InputStreamReader(System.in))) {
            String line = reader.readLine();
            System.out.println(battle(line.charAt(0), line.charAt(2)));
        }
    }
    static String battle(char me, char you) {
        switch (me - you) {
            case -1:
            case 2:
                return "Won";
            case 0:
                return "Drew";
            default:
                return "Lost";
        }
    }
}
0