結果

問題 No.264 じゃんけん
ユーザー bellbell
提出日時 2021-02-10 23:13:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 2,927 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-07-08 10:28:57
合計ジャッジ時間 4,552 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,408 KB
testcase_01 AC 119 ms
41,276 KB
testcase_02 AC 105 ms
41,496 KB
testcase_03 AC 106 ms
41,240 KB
testcase_04 AC 117 ms
41,316 KB
testcase_05 AC 114 ms
41,640 KB
testcase_06 AC 123 ms
41,384 KB
testcase_07 AC 113 ms
41,336 KB
testcase_08 AC 121 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Janken {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		String result;
		if (a == b) {
			result = "Drew";
		} else if (a + 1 == b || a - 2 == b) {
			result = "Won";
		} else {
			result = "Lost";
		}
		System.out.println(result);

        sc.close();
	}
}
0