結果

問題 No.138 化石のバージョン
ユーザー dazydazy
提出日時 2016-09-14 06:28:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 637 bytes
コンパイル時間 2,806 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-06-09 09:01:55
合計ジャッジ時間 7,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,408 KB
testcase_01 AC 116 ms
41,352 KB
testcase_02 AC 115 ms
41,008 KB
testcase_03 AC 102 ms
41,080 KB
testcase_04 AC 110 ms
41,388 KB
testcase_05 AC 100 ms
41,536 KB
testcase_06 AC 100 ms
41,240 KB
testcase_07 AC 103 ms
41,152 KB
testcase_08 AC 98 ms
41,328 KB
testcase_09 AC 117 ms
41,064 KB
testcase_10 AC 112 ms
41,060 KB
testcase_11 AC 115 ms
40,896 KB
testcase_12 AC 100 ms
41,032 KB
testcase_13 AC 109 ms
41,436 KB
testcase_14 AC 114 ms
41,020 KB
testcase_15 AC 112 ms
41,292 KB
testcase_16 AC 103 ms
41,144 KB
testcase_17 AC 110 ms
41,324 KB
testcase_18 AC 111 ms
41,032 KB
testcase_19 AC 114 ms
41,168 KB
testcase_20 AC 117 ms
41,512 KB
testcase_21 AC 104 ms
41,060 KB
testcase_22 AC 115 ms
41,564 KB
testcase_23 AC 114 ms
41,128 KB
testcase_24 AC 118 ms
41,368 KB
testcase_25 AC 114 ms
41,004 KB
testcase_26 AC 117 ms
41,368 KB
testcase_27 AC 103 ms
41,216 KB
testcase_28 AC 117 ms
41,024 KB
testcase_29 AC 103 ms
40,088 KB
testcase_30 AC 114 ms
40,900 KB
testcase_31 AC 114 ms
41,084 KB
testcase_32 AC 116 ms
41,464 KB
testcase_33 AC 115 ms
40,948 KB
testcase_34 AC 117 ms
41,032 KB
testcase_35 AC 105 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        scan.useDelimiter("[^0-9]");
        int A = scan.nextInt();
        int B = scan.nextInt();
        int C = scan.nextInt();
        int a = scan.nextInt();
        int b = scan.nextInt();
        int c = scan.nextInt();

        boolean flag = false;
        if (a > A) flag = true;
        else if (a==A && b>B) flag = true;
        else if (a==A && b==B && c > C) flag = true;
        String ans;
        if (flag) ans = "NO";
        else ans = "YES";
        System.out.println(ans);
    }
}
0