結果

問題 No.138 化石のバージョン
コンテスト
ユーザー matsuyoshi30
提出日時 2018-05-15 00:06:28
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
WA  
実行時間 -
コード長 1,059 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,768 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 46,912 KB
最終ジャッジ日時 2026-03-17 04:22:15
合計ジャッジ時間 4,628 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 27 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String[] v1 = in.next().split("\\.");
        String[] v2 = in.next().split("\\.");

        String ans = "NO";
        for(int i = 0; i < 3; i++) {
            int k = Integer.parseInt(v1[i]);
            int t = Integer.parseInt(v2[i]);
            if(i == 0) {
                if(k > t) {
                    ans = "YES";
                    break;
                } else {
                    if(i == 1) {
                        if(k > t) {
                            ans = "YES";
                            break;
                        } else {
                            if(i == 2) {
                                if(k > t) {
                                    ans = "YES";
                                    break;
                                }
                            }
                        }
                    }
                }
            }
        }

        System.out.println(ans);
    }
}
0