結果

問題 No.264 じゃんけん
ユーザー marumaru
提出日時 2017-09-24 08:57:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 394 bytes
コンパイル時間 3,412 ms
コンパイル使用メモリ 77,080 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-11-14 06:52:28
合計ジャッジ時間 5,231 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,136 KB
testcase_01 AC 118 ms
52,776 KB
testcase_02 AC 131 ms
54,240 KB
testcase_03 AC 131 ms
53,880 KB
testcase_04 AC 130 ms
54,092 KB
testcase_05 AC 132 ms
54,100 KB
testcase_06 AC 129 ms
54,040 KB
testcase_07 AC 130 ms
54,124 KB
testcase_08 AC 130 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Janken {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int me = scan.nextInt();
		int you = scan.nextInt();

		if(me == you) {
			System.out.println("Drew");
		}else if((me == 0 && you ==1) || (me==1 && you==2) || (me==2 && you==0)) {
			System.out.println("Won");
		}else {
			System.out.println("Lost");
		}
	}
}
0