結果

問題 No.264 じゃんけん
ユーザー qorrnsmjqorrnsmj
提出日時 2022-07-14 17:59:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 368 bytes
コンパイル時間 3,567 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-06-26 01:50:17
合計ジャッジ時間 5,793 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,232 KB
testcase_01 AC 133 ms
54,060 KB
testcase_02 AC 136 ms
54,004 KB
testcase_03 AC 135 ms
54,040 KB
testcase_04 AC 135 ms
53,900 KB
testcase_05 AC 137 ms
54,152 KB
testcase_06 AC 133 ms
53,956 KB
testcase_07 AC 135 ms
54,156 KB
testcase_08 AC 133 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class no264 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int K = sc.nextInt();
        String str;

        if (N == K) str = "Drew";
        else if ((N + 1) % 3 == K) str = "Won";
        else str = "Lost";
        System.out.println(str);
    }
}
0