結果

問題 No.264 じゃんけん
ユーザー core123core123
提出日時 2019-04-16 15:07:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 505 bytes
コンパイル時間 1,971 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2024-09-22 08:15:53
合計ジャッジ時間 3,694 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,312 KB
testcase_01 AC 128 ms
54,444 KB
testcase_02 AC 128 ms
54,272 KB
testcase_03 AC 131 ms
54,028 KB
testcase_04 AC 128 ms
54,028 KB
testcase_05 AC 129 ms
54,328 KB
testcase_06 AC 115 ms
53,136 KB
testcase_07 AC 130 ms
54,204 KB
testcase_08 AC 132 ms
54,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
public class Main{
	public static void main(String... args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int k=sc.nextInt();
			String s=null;
		if(n==k){
			System.out.println("Drew");
			return;
		}else if(n==0){
			if(k==1){
				s="Won";
			}else{
				s="Lost";
			}
		}else if(n==1){
			if(k==0){
				s="Lost";
			}else{
				s="Won";
			}
		}else{
			if(k==0){
				s="Won";
			}else{
				s="Lost";
			}
		}
		System.out.println(s);
	}
}
0