結果

問題 No.264 じゃんけん
ユーザー yamax3232yamax3232
提出日時 2017-02-09 20:49:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 397 bytes
コンパイル時間 4,121 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 41,372 KB
最終ジャッジ日時 2024-06-07 18:06:05
合計ジャッジ時間 4,873 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,112 KB
testcase_01 AC 122 ms
41,372 KB
testcase_02 AC 106 ms
39,836 KB
testcase_03 AC 118 ms
40,928 KB
testcase_04 AC 120 ms
41,060 KB
testcase_05 AC 123 ms
40,988 KB
testcase_06 AC 121 ms
41,316 KB
testcase_07 AC 112 ms
39,796 KB
testcase_08 AC 121 ms
41,144 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