結果

問題 No.264 じゃんけん
ユーザー r.suzukir.suzuki
提出日時 2015-12-08 12:07:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 366 bytes
コンパイル時間 3,524 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 54,120 KB
最終ジャッジ日時 2024-09-14 19:53:19
合計ジャッジ時間 5,378 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,968 KB
testcase_01 AC 132 ms
54,008 KB
testcase_02 AC 134 ms
54,120 KB
testcase_03 AC 133 ms
54,080 KB
testcase_04 AC 133 ms
53,896 KB
testcase_05 AC 132 ms
53,920 KB
testcase_06 AC 133 ms
53,944 KB
testcase_07 AC 134 ms
54,012 KB
testcase_08 AC 130 ms
53,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_264 {

	public static void main(String[] args) {
		String[][] standings = {{"Drew","Won","Lost"},
								{"Lost","Drew","Won"},
								{"Won","Lost","Drew"}
								};
		
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		
		System.out.println(standings[a][b]);
		sc.close();

	}

}
0