結果

問題 No.264 じゃんけん
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-05 23:53:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 379 bytes
コンパイル時間 3,135 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-06-26 10:40:18
合計ジャッジ時間 4,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,376 KB
testcase_01 AC 126 ms
41,092 KB
testcase_02 AC 114 ms
39,940 KB
testcase_03 AC 115 ms
40,388 KB
testcase_04 AC 126 ms
41,320 KB
testcase_05 AC 127 ms
41,380 KB
testcase_06 AC 125 ms
41,340 KB
testcase_07 AC 111 ms
40,192 KB
testcase_08 AC 125 ms
41,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No264 {

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

		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