結果

問題 No.264 じゃんけん
ユーザー omuomu
提出日時 2015-08-08 04:16:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 73,988 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-07-18 05:48:47
合計ジャッジ時間 3,598 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,352 KB
testcase_01 AC 126 ms
41,240 KB
testcase_02 AC 126 ms
41,360 KB
testcase_03 AC 107 ms
41,516 KB
testcase_04 AC 117 ms
41,496 KB
testcase_05 AC 123 ms
41,324 KB
testcase_06 AC 122 ms
41,896 KB
testcase_07 AC 108 ms
41,320 KB
testcase_08 AC 124 ms
41,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package tmp;

import java.util.Scanner;

public class Main {

	static Scanner sc;
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		solve();
	}
	
	static void solve(){
		int n = sc.nextInt();
		int k = sc.nextInt();
		
		if((n + 1) % 3 == k){
			System.out.println("Won");
		}else
		if((k + 1) % 3 == n){
			System.out.println("Lost");
		}else{
			
			System.out.println("Drew");
		}
	}

}
0