結果

問題 No.264 じゃんけん
ユーザー omc-testomc-test
提出日時 2016-08-04 09:30:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 333 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 41,352 KB
最終ジャッジ日時 2024-11-06 23:48:52
合計ジャッジ時間 3,892 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,352 KB
testcase_01 AC 131 ms
40,984 KB
testcase_02 AC 130 ms
41,116 KB
testcase_03 AC 131 ms
41,324 KB
testcase_04 AC 131 ms
41,188 KB
testcase_05 AC 131 ms
41,132 KB
testcase_06 AC 130 ms
40,984 KB
testcase_07 AC 130 ms
41,100 KB
testcase_08 AC 130 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

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("Drew");
		}else if(n-k == -1 || n-k == 2){
			System.out.println("Won");
		}else{
			System.out.println("Lost");
		}
	}
}
0