結果

問題 No.264 じゃんけん
ユーザー Koketti1Koketti1
提出日時 2017-02-05 16:40:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 383 bytes
コンパイル時間 1,786 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 41,276 KB
最終ジャッジ日時 2024-06-06 14:29:51
合計ジャッジ時間 3,360 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,988 KB
testcase_01 AC 116 ms
39,692 KB
testcase_02 AC 107 ms
40,108 KB
testcase_03 AC 118 ms
41,276 KB
testcase_04 AC 116 ms
41,204 KB
testcase_05 AC 98 ms
39,916 KB
testcase_06 AC 106 ms
40,208 KB
testcase_07 AC 107 ms
40,104 KB
testcase_08 AC 115 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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