結果

問題 No.264 じゃんけん
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-08 21:58:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 384 bytes
コンパイル時間 1,750 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 55,724 KB
最終ジャッジ日時 2024-10-01 05:20:37
合計ジャッジ時間 3,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,684 KB
testcase_01 AC 123 ms
53,952 KB
testcase_02 WA -
testcase_03 AC 116 ms
41,212 KB
testcase_04 AC 105 ms
39,792 KB
testcase_05 AC 115 ms
41,392 KB
testcase_06 AC 111 ms
39,936 KB
testcase_07 AC 124 ms
41,048 KB
testcase_08 AC 112 ms
40,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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