結果

問題 No.264 じゃんけん
ユーザー clamdclamd
提出日時 2016-12-10 11:43:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 3,937 ms
コンパイル使用メモリ 74,960 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-05-06 16:30:15
合計ジャッジ時間 5,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,056 KB
testcase_01 AC 142 ms
54,176 KB
testcase_02 AC 142 ms
54,064 KB
testcase_03 AC 138 ms
54,220 KB
testcase_04 AC 139 ms
53,820 KB
testcase_05 AC 138 ms
53,980 KB
testcase_06 AC 144 ms
54,112 KB
testcase_07 AC 145 ms
53,888 KB
testcase_08 AC 147 ms
54,264 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