結果

問題 No.264 じゃんけん
ユーザー clamdclamd
提出日時 2016-12-10 11:37:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 3,050 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 41,032 KB
最終ジャッジ日時 2024-05-06 16:30:03
合計ジャッジ時間 4,827 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,808 KB
testcase_01 AC 108 ms
39,808 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 97 ms
40,032 KB
testcase_05 AC 95 ms
39,768 KB
testcase_06 AC 100 ms
39,808 KB
testcase_07 WA -
testcase_08 AC 102 ms
40,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class janken {
	public static void main(String[] args){
		Scanner sn = new Scanner(System.in);
		int first = sn.nextInt();
		int later = sn.nextInt();
		if(first == later){
			System.out.println("Drew");
		}else if((first == 0 && later == 1) || (first == 1 && later == 2) || (first == 2 && later == 0)){
			System.out.println("Won");
		}else{
			System.out.println("Lose");
		}
	}
}
0