結果

問題 No.264 じゃんけん
ユーザー maki17maki17
提出日時 2017-02-05 22:24:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 501 bytes
コンパイル時間 3,642 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-06-06 17:30:31
合計ジャッジ時間 5,495 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,420 KB
testcase_01 AC 130 ms
41,176 KB
testcase_02 AC 132 ms
41,552 KB
testcase_03 AC 121 ms
40,072 KB
testcase_04 AC 134 ms
41,468 KB
testcase_05 AC 134 ms
41,648 KB
testcase_06 AC 134 ms
41,468 KB
testcase_07 AC 133 ms
41,136 KB
testcase_08 AC 132 ms
41,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class sample264 {

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