結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,260 KB
testcase_01 AC 123 ms
41,308 KB
testcase_02 AC 125 ms
41,376 KB
testcase_03 AC 117 ms
41,264 KB
testcase_04 AC 114 ms
41,232 KB
testcase_05 AC 116 ms
41,200 KB
testcase_06 AC 120 ms
41,464 KB
testcase_07 AC 117 ms
41,152 KB
testcase_08 AC 115 ms
40,988 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