結果

問題 No.264 じゃんけん
ユーザー yugi0922yugi0922
提出日時 2020-06-24 08:37:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 1,770 bytes
コンパイル時間 3,319 ms
コンパイル使用メモリ 78,340 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-07-03 20:00:17
合計ジャッジ時間 5,113 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
39,968 KB
testcase_01 AC 123 ms
41,396 KB
testcase_02 AC 125 ms
41,424 KB
testcase_03 AC 123 ms
41,620 KB
testcase_04 AC 114 ms
40,732 KB
testcase_05 AC 127 ms
41,412 KB
testcase_06 AC 126 ms
41,540 KB
testcase_07 AC 124 ms
41,256 KB
testcase_08 AC 127 ms
41,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.*;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;

public class JanKen_03 {
	static final int[] myvalidValues =  {0,2};
	static final int[] yourvalidValues =  {0,2};
	static final int GU = 0;
	static final int TYOKI = 0;
	static final int PA = 0;
	//勝敗
	static final String KATI = "Won";
	static final String MAKE = "Lost";
	static final String AIKO = "Drew";
	public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		BufferedReader reader = new BufferedReader(new InputStreamReader(in));
		int myHand = 0;
		int yourHand = 0;
		try{
			String[] inputs = reader.readLine().split(" ");
			myHand = Integer.parseInt(inputs[0]);
			yourHand = Integer.parseInt(inputs[1]);
			if(validNum(myHand, yourHand, myvalidValues, yourvalidValues )){
				System.out.println(janKen(myHand, yourHand));
			}

		}catch(NumberFormatException ne){
			System.out.println("1~2の数字を入力してください");
		}catch(IOException io){
			System.out.println("読込中にエラーが起きました");
		}finally{
			try{
				reader.close();
			}catch(IOException io){
				System.out.println("BufferedReaderのクローズに失敗しました");
			}
		}
	}

	static  boolean validNum(int myHand,int yourHand,int[] myvalidValues,int[] yourvalidValues ){
		boolean result = false;
	    if(myHand >= myvalidValues[0] && myHand <= myvalidValues[1] &&
	    yourHand >= yourvalidValues[0] && yourHand <= yourvalidValues[1]){
	    	return true;
	    }
		return result;
	}

	static String janKen(int myHand,int yourHand){
		switch(myHand - yourHand){
		case -1:
		case 2 :
			return KATI;
		case 0 :
			return AIKO;
		default :
			return MAKE;
	}

	}
}
0