結果

問題 No.138 化石のバージョン
ユーザー kou6839kou6839
提出日時 2015-01-30 22:27:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 75,272 KB
実行使用メモリ 56,212 KB
最終ジャッジ日時 2024-06-23 04:28:44
合計ジャッジ時間 7,960 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
52,996 KB
testcase_01 AC 109 ms
53,968 KB
testcase_02 AC 108 ms
53,820 KB
testcase_03 AC 94 ms
52,780 KB
testcase_04 AC 105 ms
53,728 KB
testcase_05 AC 110 ms
54,096 KB
testcase_06 WA -
testcase_07 AC 97 ms
53,160 KB
testcase_08 AC 106 ms
54,012 KB
testcase_09 WA -
testcase_10 AC 111 ms
53,988 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 106 ms
53,872 KB
testcase_14 AC 110 ms
53,948 KB
testcase_15 AC 113 ms
54,000 KB
testcase_16 AC 117 ms
52,764 KB
testcase_17 AC 106 ms
53,912 KB
testcase_18 AC 96 ms
52,940 KB
testcase_19 AC 109 ms
52,884 KB
testcase_20 WA -
testcase_21 AC 105 ms
53,828 KB
testcase_22 AC 92 ms
52,324 KB
testcase_23 AC 105 ms
53,716 KB
testcase_24 AC 106 ms
53,888 KB
testcase_25 AC 105 ms
54,152 KB
testcase_26 AC 112 ms
52,776 KB
testcase_27 WA -
testcase_28 AC 114 ms
53,956 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 109 ms
54,000 KB
testcase_32 AC 106 ms
54,052 KB
testcase_33 WA -
testcase_34 AC 107 ms
54,084 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String aString = sc.next();
        String bString=sc.next();
        if((int)aString.charAt(0) < (int)bString.charAt(0) ){
        	System.out.println("NO");
        	return;
        }
        if((int)aString.charAt(2) < (int)bString.charAt(2) ){
        	System.out.println("NO");
        	return;
        }
        if((int)aString.charAt(4) < (int)bString.charAt(4) ){
        	System.out.println("NO");
        	return;
        }
        System.out.println("YES");
        
    }
}
0