結果

問題 No.264 じゃんけん
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 09:20:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 55,860 KB
最終ジャッジ日時 2024-09-13 11:17:50
合計ジャッジ時間 3,897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,084 KB
testcase_01 AC 133 ms
53,780 KB
testcase_02 AC 133 ms
54,284 KB
testcase_03 AC 131 ms
54,012 KB
testcase_04 AC 131 ms
54,128 KB
testcase_05 AC 133 ms
54,088 KB
testcase_06 WA -
testcase_07 AC 135 ms
54,096 KB
testcase_08 AC 134 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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