結果

問題 No.264 じゃんけん
ユーザー nishimitnishimit
提出日時 2018-07-04 14:29:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 398 bytes
コンパイル時間 3,430 ms
コンパイル使用メモリ 78,132 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-07-01 02:12:44
合計ジャッジ時間 5,031 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,880 KB
testcase_01 AC 132 ms
53,992 KB
testcase_02 AC 136 ms
54,156 KB
testcase_03 AC 132 ms
54,152 KB
testcase_04 AC 133 ms
54,112 KB
testcase_05 AC 130 ms
54,192 KB
testcase_06 AC 130 ms
54,432 KB
testcase_07 AC 131 ms
54,136 KB
testcase_08 AC 132 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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