結果

問題 No.264 じゃんけん
ユーザー YamaKasaYamaKasa
提出日時 2018-05-01 23:56:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 399 bytes
コンパイル時間 2,352 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-06-28 00:16:38
合計ジャッジ時間 4,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,160 KB
testcase_01 AC 112 ms
39,980 KB
testcase_02 AC 128 ms
41,364 KB
testcase_03 AC 124 ms
41,144 KB
testcase_04 AC 126 ms
40,980 KB
testcase_05 AC 126 ms
41,416 KB
testcase_06 AC 129 ms
41,252 KB
testcase_07 AC 132 ms
41,008 KB
testcase_08 AC 120 ms
39,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int K = scan.nextInt();
		scan.close();

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