結果

問題 No.264 じゃんけん
ユーザー nesaianesaia
提出日時 2017-04-17 16:33:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 496 bytes
コンパイル時間 3,013 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-07-19 05:25:48
合計ジャッジ時間 4,640 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,136 KB
testcase_01 AC 119 ms
40,988 KB
testcase_02 AC 116 ms
41,000 KB
testcase_03 AC 121 ms
41,440 KB
testcase_04 AC 106 ms
40,040 KB
testcase_05 AC 116 ms
41,056 KB
testcase_06 AC 110 ms
40,776 KB
testcase_07 AC 115 ms
41,068 KB
testcase_08 AC 115 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.264 じゃんけん
//http://yukicoder.me/problems/699
//20170417 1622

package no264;

import java.util.Scanner;

public class No264 {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n;
		int k;
		
		n = scan.nextInt();
		k = scan.nextInt();
		
		scan.close();

		if(n == k){
			System.out.println("Drew");
		} else{
			if(k == 0) k = 3;
			if(k - n == 1){
				System.out.println("Won");
			}else {
				System.out.println("Lost");
			}
		}
		
	}

}
0