結果

問題 No.264 じゃんけん
ユーザー CavasiroCavasiro
提出日時 2020-04-15 01:11:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 348 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 73,816 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-10-01 18:30:14
合計ジャッジ時間 3,977 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,120 KB
testcase_01 AC 131 ms
41,504 KB
testcase_02 AC 131 ms
41,368 KB
testcase_03 AC 131 ms
41,168 KB
testcase_04 AC 134 ms
41,352 KB
testcase_05 AC 134 ms
41,228 KB
testcase_06 AC 130 ms
41,268 KB
testcase_07 AC 126 ms
41,036 KB
testcase_08 AC 131 ms
41,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
 
class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int me = sc.nextInt();
		int you = sc.nextInt();
		String ans;
		if(me == you){
			ans = "Drew";
		} else if((me==you-1)||((me==2)&&(you==0))) {
			ans = "Won";
		} else {
			ans = "Lost";
		}
		System.out.println(ans);
	}
}
0