結果

問題 No.264 じゃんけん
ユーザー atkrymatkrym
提出日時 2016-10-23 16:43:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 383 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-11-24 01:56:17
合計ジャッジ時間 3,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,292 KB
testcase_01 AC 128 ms
41,008 KB
testcase_02 AC 126 ms
41,204 KB
testcase_03 AC 123 ms
41,120 KB
testcase_04 AC 126 ms
41,268 KB
testcase_05 AC 127 ms
41,296 KB
testcase_06 AC 128 ms
40,996 KB
testcase_07 AC 123 ms
41,564 KB
testcase_08 AC 114 ms
41,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.text.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int[][] ret = {{0, 1, 2}, {2, 0, 1}, {1, 2, 0}};
        String[] s = {"Drew", "Won", "Lost"};
        
        System.out.println(s[ret[sc.nextInt()][sc.nextInt()]]);
    }
}
0