結果

問題 No.264 じゃんけん
ユーザー rf141rf141
提出日時 2015-08-07 23:09:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 3,022 ms
コンパイル使用メモリ 78,240 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-07-18 05:17:53
合計ジャッジ時間 4,340 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,108 KB
testcase_01 AC 102 ms
40,308 KB
testcase_02 AC 103 ms
40,100 KB
testcase_03 AC 112 ms
41,304 KB
testcase_04 AC 103 ms
39,960 KB
testcase_05 AC 95 ms
39,912 KB
testcase_06 AC 102 ms
41,212 KB
testcase_07 AC 105 ms
40,220 KB
testcase_08 AC 110 ms
41,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class janken{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		int me = scan.nextInt();
		int you = scan.nextInt();
		System.out.println(DOjanken(me,you));
	}
	public static String DOjanken(int m,int y){
		if(m==y)return "Drew";
		String result = "";
		switch(m){
			case 0:
				if(y==2)result="Lost";
				if(y==1)result="Won";
				break;
			case 1:
				if(y==0)result="Lost";
				if(y==2)result="Won";
				break;
			case 2:
				if(y==0)result="Won";
				if(y==1)result="Lost";
				break;
		}
		return result;
	}
}
0