結果

問題 No.264 じゃんけん
ユーザー yamax3232yamax3232
提出日時 2017-02-09 20:49:54
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 397 bytes
コンパイル時間 4,102 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 41,176 KB
最終ジャッジ日時 2024-12-26 02:11:35
合計ジャッジ時間 5,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,064 KB
testcase_01 AC 130 ms
41,152 KB
testcase_02 AC 114 ms
39,892 KB
testcase_03 AC 128 ms
39,740 KB
testcase_04 AC 135 ms
40,736 KB
testcase_05 AC 122 ms
40,748 KB
testcase_06 AC 131 ms
41,104 KB
testcase_07 AC 134 ms
41,176 KB
testcase_08 AC 119 ms
40,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Janken {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
Scanner kb=new Scanner(System.in);
int a=kb.nextInt();
int b=kb.nextInt();
if((a==2&&b==0)||(a==1&&b==2)||(a==0&&b==1)){
	System.out.println("Won");
}else if(a==b){
	System.out.println("Drew");
}else{
	System.out.println("Lost");
}
kb.close();
	}

}
0