結果

問題 No.264 じゃんけん
ユーザー jimanojimano
提出日時 2016-01-10 16:47:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 458 bytes
コンパイル時間 3,775 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 54,044 KB
最終ジャッジ日時 2024-09-19 15:56:23
合計ジャッジ時間 5,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,928 KB
testcase_01 AC 133 ms
53,732 KB
testcase_02 AC 134 ms
53,688 KB
testcase_03 AC 133 ms
54,044 KB
testcase_04 AC 132 ms
53,892 KB
testcase_05 AC 135 ms
53,500 KB
testcase_06 AC 133 ms
53,708 KB
testcase_07 AC 130 ms
53,672 KB
testcase_08 AC 134 ms
53,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No0264 {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		byte N = sc.nextByte();
		byte K = sc.nextByte();

		//3の剰余
		if(N == K) drew();
		else if( (N + 1) % 3 == K) won();
		else lost();
	}
	
	public static void won(){
		System.out.println("Won");
	}
	public static void lost(){
		System.out.println("Lost");
	}
	public static void drew(){
		System.out.println("Drew");
	}
}
0