結果

問題 No.264 じゃんけん
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-04 20:57:49
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 414 bytes
コンパイル時間 3,229 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-06-30 04:03:15
合計ジャッジ時間 4,936 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,004 KB
testcase_01 AC 116 ms
53,080 KB
testcase_02 AC 115 ms
52,576 KB
testcase_03 AC 128 ms
54,408 KB
testcase_04 AC 128 ms
53,968 KB
testcase_05 AC 116 ms
52,880 KB
testcase_06 AC 130 ms
54,040 KB
testcase_07 AC 132 ms
53,868 KB
testcase_08 AC 126 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No264 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		int myhand = sc.nextInt();
		int urhand = sc.nextInt();
		
		switch(myhand - urhand) {
			case 0:
				System.out.println("Drew");
				break;
			case -1:
			case 2:
				System.out.println("Won");
				break;
			case 1:
			case -2:
				System.out.println("Lost");
				break;
		}
	}
}
0