結果

問題 No.264 じゃんけん
ユーザー omc-testomc-test
提出日時 2016-08-04 09:28:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 334 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-11-06 23:48:48
合計ジャッジ時間 4,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 120 ms
40,236 KB
testcase_02 AC 131 ms
41,056 KB
testcase_03 AC 133 ms
41,148 KB
testcase_04 WA -
testcase_05 AC 133 ms
40,984 KB
testcase_06 AC 132 ms
41,076 KB
testcase_07 AC 133 ms
40,928 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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