結果

問題 No.264 じゃんけん
ユーザー arito_asuarito_asu
提出日時 2020-07-04 17:34:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 371 bytes
コンパイル時間 2,346 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 41,252 KB
最終ジャッジ日時 2024-09-19 05:36:47
合計ジャッジ時間 4,295 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,820 KB
testcase_01 AC 129 ms
41,080 KB
testcase_02 AC 129 ms
41,172 KB
testcase_03 AC 115 ms
40,060 KB
testcase_04 AC 130 ms
41,144 KB
testcase_05 AC 127 ms
41,252 KB
testcase_06 AC 126 ms
41,212 KB
testcase_07 AC 128 ms
41,144 KB
testcase_08 AC 130 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int n = scan.nextInt();
        int k = scan.nextInt();
        String[] hand = new String[3];
        hand[0] = "Drew";
        hand[1] = "Won";
        hand[2] = "Lost";
        System.out.println(hand[(k-n+3)%3]);
    }
}
0