結果

問題 No.264 じゃんけん
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-08 21:59:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 445 bytes
コンパイル時間 2,598 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 41,340 KB
最終ジャッジ日時 2024-10-01 06:31:47
合計ジャッジ時間 4,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,800 KB
testcase_01 AC 107 ms
39,368 KB
testcase_02 AC 130 ms
41,316 KB
testcase_03 AC 129 ms
41,340 KB
testcase_04 AC 126 ms
40,952 KB
testcase_05 AC 126 ms
41,284 KB
testcase_06 AC 122 ms
41,284 KB
testcase_07 AC 126 ms
40,916 KB
testcase_08 AC 124 ms
41,244 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==0 && enem==2) {System.out.println("Lost");}
		else if (hero < enem) {System.out.println("Won");}
		else {System.out.println("Lost");}
	}
}
0