結果

問題 No.264 じゃんけん
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-07 22:23:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 741 bytes
コンパイル時間 3,074 ms
コンパイル使用メモリ 76,924 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-07-18 05:07:44
合計ジャッジ時間 4,632 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
52,836 KB
testcase_01 AC 109 ms
53,084 KB
testcase_02 WA -
testcase_03 AC 118 ms
54,128 KB
testcase_04 AC 106 ms
53,060 KB
testcase_05 AC 105 ms
53,124 KB
testcase_06 AC 119 ms
54,228 KB
testcase_07 AC 119 ms
54,156 KB
testcase_08 AC 118 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0264 {
	
	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		int n = in.nextInt();
		int k = in.nextInt();
		if (n < k || (n == 2 && k == 0)) {
			out.println("Won");
		}else if (n == k) {
			out.println("Drew");
		}else {
			out.println("Lost");
		}
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0