結果

問題 No.264 じゃんけん
ユーザー dazydazy
提出日時 2016-09-01 22:00:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 552 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 41,332 KB
最終ジャッジ日時 2024-11-15 17:03:47
合計ジャッジ時間 3,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,236 KB
testcase_01 AC 127 ms
41,124 KB
testcase_02 AC 126 ms
41,296 KB
testcase_03 AC 127 ms
41,236 KB
testcase_04 AC 127 ms
40,976 KB
testcase_05 AC 128 ms
41,184 KB
testcase_06 AC 124 ms
41,332 KB
testcase_07 AC 113 ms
40,308 KB
testcase_08 AC 125 ms
41,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Yukicoder {
    static public void main(String[] args) {
        int my,you;
        Scanner scanner = new Scanner(System.in);

        my = scanner.nextInt();
        you = scanner.nextInt();

        if (my == you) System.out.println("Drew");
        else if (you - my > 0) {
            if (my + 1 == you) System.out.println("Won");
            else System.out.println("Lost");
        } else {
            if (you + 1 == my) System.out.println("Lost");
            else System.out.println("Won");
        }
    }
}
0