結果

問題 No.264 じゃんけん
ユーザー hnthnt
提出日時 2016-04-10 20:11:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 397 bytes
コンパイル時間 2,927 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-10-04 05:53:44
合計ジャッジ時間 4,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,232 KB
testcase_01 AC 103 ms
40,908 KB
testcase_02 AC 104 ms
41,236 KB
testcase_03 AC 100 ms
41,264 KB
testcase_04 AC 115 ms
41,068 KB
testcase_05 AC 114 ms
39,856 KB
testcase_06 AC 117 ms
41,396 KB
testcase_07 AC 121 ms
41,248 KB
testcase_08 AC 105 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class no264 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int K = sc.nextInt();
		if(N==0 && K==0 || N==1 && K==1 || N==2 && K==2){
			System.out.println("Drew");
		}else if(N==0 && K==1 || N==1 && K==2 || N==2 && K==0){
			System.out.println("Won");
		}else{
			System.out.println("Lost");
		}
	}
}
0