結果

問題 No.264 じゃんけん
ユーザー yu_017yu_017
提出日時 2019-01-13 19:18:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 367 bytes
コンパイル時間 3,817 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-06-07 18:01:06
合計ジャッジ時間 6,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,200 KB
testcase_01 AC 135 ms
41,400 KB
testcase_02 AC 136 ms
41,644 KB
testcase_03 AC 136 ms
41,316 KB
testcase_04 AC 135 ms
41,476 KB
testcase_05 AC 120 ms
40,244 KB
testcase_06 AC 137 ms
41,480 KB
testcase_07 AC 134 ms
41,532 KB
testcase_08 AC 140 ms
41,308 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