結果

問題 No.264 じゃんけん
ユーザー star filed☆star filed☆
提出日時 2020-04-25 15:14:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 3,493 ms
コンパイル使用メモリ 73,768 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-11-07 03:57:29
合計ジャッジ時間 3,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,716 KB
testcase_01 AC 135 ms
53,640 KB
testcase_02 AC 133 ms
53,676 KB
testcase_03 AC 133 ms
53,852 KB
testcase_04 AC 133 ms
54,172 KB
testcase_05 AC 135 ms
53,924 KB
testcase_06 AC 135 ms
53,780 KB
testcase_07 AC 135 ms
54,108 KB
testcase_08 AC 138 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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