結果

問題 No.264 じゃんけん
ユーザー YOSHIYOSHI
提出日時 2021-03-07 22:38:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 597 bytes
コンパイル時間 3,668 ms
コンパイル使用メモリ 80,416 KB
実行使用メモリ 51,164 KB
最終ジャッジ日時 2024-10-09 06:52:02
合計ジャッジ時間 4,869 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
50,960 KB
testcase_01 AC 64 ms
50,580 KB
testcase_02 AC 65 ms
50,444 KB
testcase_03 AC 65 ms
50,832 KB
testcase_04 AC 64 ms
50,860 KB
testcase_05 AC 64 ms
50,724 KB
testcase_06 AC 66 ms
51,164 KB
testcase_07 AC 65 ms
50,616 KB
testcase_08 AC 69 ms
51,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.stream.Stream;

public class No00000264_Main {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int[] arr = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
		if(arr[0] == arr[1]) {
			System.out.println("Drew");
		} else {
			if((arr[0] - arr[1] == 2) || arr[0] - arr[1] == -1) {
				System.out.println("Won");
			} else {
				System.out.println("Lost");
			}
		}
	}
}
0