結果

問題 No.264 じゃんけん
ユーザー uafr_csuafr_cs
提出日時 2015-08-10 20:02:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 353 bytes
コンパイル時間 1,781 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-07-18 06:34:06
合計ジャッジ時間 3,270 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
54,088 KB
testcase_01 AC 103 ms
52,684 KB
testcase_02 AC 106 ms
52,936 KB
testcase_03 AC 116 ms
54,068 KB
testcase_04 AC 108 ms
52,748 KB
testcase_05 AC 110 ms
54,088 KB
testcase_06 AC 104 ms
52,716 KB
testcase_07 AC 112 ms
54,196 KB
testcase_08 AC 113 ms
53,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int K = sc.nextInt();
		
		if(N == K){
			System.out.println("Drew");
		}else if((N + 1) % 3 == K){
			System.out.println("Won");
		}else{
			System.out.println("Lost");
		}
		
	}
	
}
0