結果

問題 No.1129 Rating じゃんけん
ユーザー face4face4
提出日時 2020-08-02 11:54:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 74,968 KB
実行使用メモリ 37,228 KB
最終ジャッジ日時 2024-07-18 10:16:41
合計ジャッジ時間 3,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,004 KB
testcase_01 AC 52 ms
37,100 KB
testcase_02 AC 51 ms
36,892 KB
testcase_03 AC 51 ms
36,960 KB
testcase_04 AC 53 ms
36,936 KB
testcase_05 AC 48 ms
36,932 KB
testcase_06 AC 49 ms
37,068 KB
testcase_07 AC 50 ms
37,060 KB
testcase_08 AC 49 ms
36,652 KB
testcase_09 AC 50 ms
36,972 KB
testcase_10 AC 52 ms
37,164 KB
testcase_11 AC 50 ms
37,052 KB
testcase_12 AC 49 ms
37,208 KB
testcase_13 AC 48 ms
37,228 KB
testcase_14 AC 47 ms
36,816 KB
testcase_15 AC 49 ms
36,996 KB
testcase_16 AC 49 ms
36,936 KB
testcase_17 AC 51 ms
37,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String a[] = br.readLine().split(" ");
        int b[] = new int[4];
        for(int i = 0; i < 4; i++){
            b[i] = Integer.parseInt(a[i]);
        }
        if(b[0] == b[2]){
            System.out.println(b[1]==b[3] ? "Draw" : (b[1]+1)%3==b[3] ? "null" : "tRue");
        }else{
            System.out.println(b[0] > b[2] ? "null" : "tRue");
        }
    }
}
0