結果

問題 No.264 じゃんけん
ユーザー clamdclamd
提出日時 2016-12-10 11:42:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 3,921 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 56,272 KB
最終ジャッジ日時 2024-05-06 16:30:09
合計ジャッジ時間 4,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,148 KB
testcase_01 AC 109 ms
41,300 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 117 ms
40,808 KB
testcase_05 AC 120 ms
40,992 KB
testcase_06 AC 118 ms
41,168 KB
testcase_07 WA -
testcase_08 AC 104 ms
40,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class janken {
	public static void main(String[] args){
		Scanner sn = new Scanner(System.in);
		int first = sn.nextInt();
		int later = sn.nextInt();
		if(first == later){
			System.out.println("Drew");
		}else if((first == 0 && later == 1) || (first == 1 && later == 2) || (first == 2 && later == 0)){
			System.out.println("Won");
		}else{
			System.out.println("Lose");
		}
	}
}
0