結果

問題 No.264 じゃんけん
ユーザー villachvillach
提出日時 2017-10-13 15:47:33
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 361 bytes
コンパイル時間 4,993 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-11-17 11:25:03
合計ジャッジ時間 5,495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,308 KB
testcase_01 AC 135 ms
40,928 KB
testcase_02 AC 137 ms
41,260 KB
testcase_03 AC 138 ms
41,440 KB
testcase_04 AC 138 ms
41,308 KB
testcase_05 AC 137 ms
41,228 KB
testcase_06 AC 135 ms
41,292 KB
testcase_07 AC 137 ms
40,988 KB
testcase_08 AC 137 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N264 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		
		if(a == b){
			System.out.println("Drew");
		}else if(a - b == -1 || a - b == 2){
			System.out.println("Won");
		}else{
			System.out.println("Lost");
		}
	}
}
0