結果

問題 No.264 じゃんけん
ユーザー len_proglen_prog
提出日時 2016-06-08 11:32:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 833 bytes
コンパイル時間 2,843 ms
コンパイル使用メモリ 75,588 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-10-09 02:55:49
合計ジャッジ時間 4,359 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,296 KB
testcase_01 AC 136 ms
41,424 KB
testcase_02 AC 134 ms
40,804 KB
testcase_03 AC 139 ms
41,152 KB
testcase_04 AC 135 ms
40,892 KB
testcase_05 AC 132 ms
41,048 KB
testcase_06 AC 134 ms
41,276 KB
testcase_07 AC 136 ms
41,260 KB
testcase_08 AC 131 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int M,Y;
		M = scan.nextInt();
		Y = scan.nextInt();

		if(M == 0){
			switch(Y){
				case 0:
					System.out.println("Drew");
					break;
				case 1:
					System.out.println("Won");
					break;
				case 2:
					System.out.println("Lost");
					break;
			}
		}else if(M == 1){
			switch(Y){
				case 0:
					System.out.println("Lost");
					break;
				case 1:
					System.out.println("Drew");
					break;
				case 2:
					System.out.println("Won");
					break;
			}
		}else if(M == 2){
			switch(Y){
				case 0:
					System.out.println("Won");
					break;
				case 1:
					System.out.println("Lost");
					break;
				case 2:
					System.out.println("Drew");
					break;
			}
		}
		scan.close();
	}

}
0