結果

問題 No.264 じゃんけん
ユーザー clamdclamd
提出日時 2016-12-10 11:43:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 3,989 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-11-29 00:31:00
合計ジャッジ時間 4,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,216 KB
testcase_01 AC 105 ms
41,220 KB
testcase_02 AC 109 ms
39,996 KB
testcase_03 AC 116 ms
41,168 KB
testcase_04 AC 121 ms
41,216 KB
testcase_05 AC 116 ms
40,192 KB
testcase_06 AC 116 ms
41,124 KB
testcase_07 AC 116 ms
41,756 KB
testcase_08 AC 117 ms
41,408 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("Lost");
		}
	}
}
0