結果

問題 No.264 じゃんけん
ユーザー yu_017yu_017
提出日時 2019-01-13 19:18:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 367 bytes
コンパイル時間 4,447 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 41,144 KB
最終ジャッジ日時 2024-12-26 02:02:32
合計ジャッジ時間 6,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
41,036 KB
testcase_01 AC 151 ms
40,908 KB
testcase_02 AC 156 ms
41,048 KB
testcase_03 AC 140 ms
40,060 KB
testcase_04 AC 144 ms
40,188 KB
testcase_05 AC 136 ms
40,096 KB
testcase_06 AC 156 ms
41,144 KB
testcase_07 AC 156 ms
40,812 KB
testcase_08 AC 156 ms
41,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class A000264 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int p = (-sc.nextInt()+sc.nextInt()+3)%3;
		sc.close();
		switch (p) {
		case 0:
			System.out.println("Drew");
			break;
		case 1:
			System.out.println("Won");
			break;
		case 2:
			System.out.println("Lost");
			break;
		}
	}

}
0