結果

問題 No.138 化石のバージョン
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-06-02 15:14:11
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,446 bytes
コンパイル時間 3,609 ms
コンパイル使用メモリ 76,228 KB
実行使用メモリ 56,372 KB
最終ジャッジ日時 2023-09-20 18:47:34
合計ジャッジ時間 9,417 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
55,624 KB
testcase_01 AC 121 ms
55,676 KB
testcase_02 AC 119 ms
55,572 KB
testcase_03 AC 121 ms
55,640 KB
testcase_04 AC 121 ms
55,704 KB
testcase_05 AC 121 ms
55,464 KB
testcase_06 AC 121 ms
55,788 KB
testcase_07 AC 120 ms
56,036 KB
testcase_08 AC 121 ms
55,976 KB
testcase_09 AC 120 ms
55,528 KB
testcase_10 AC 120 ms
56,028 KB
testcase_11 AC 122 ms
55,752 KB
testcase_12 AC 121 ms
56,092 KB
testcase_13 AC 120 ms
55,924 KB
testcase_14 AC 121 ms
56,036 KB
testcase_15 AC 121 ms
55,884 KB
testcase_16 AC 120 ms
56,372 KB
testcase_17 AC 117 ms
55,528 KB
testcase_18 AC 118 ms
55,736 KB
testcase_19 AC 119 ms
56,028 KB
testcase_20 RE -
testcase_21 AC 121 ms
56,140 KB
testcase_22 AC 123 ms
55,944 KB
testcase_23 AC 121 ms
56,092 KB
testcase_24 AC 120 ms
55,772 KB
testcase_25 AC 121 ms
55,788 KB
testcase_26 AC 121 ms
55,712 KB
testcase_27 AC 119 ms
55,252 KB
testcase_28 AC 122 ms
55,548 KB
testcase_29 AC 120 ms
56,152 KB
testcase_30 AC 120 ms
56,104 KB
testcase_31 AC 120 ms
55,904 KB
testcase_32 AC 121 ms
55,960 KB
testcase_33 AC 120 ms
55,772 KB
testcase_34 AC 119 ms
55,904 KB
testcase_35 AC 119 ms
55,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package b2015_5_31;

import java.util.Scanner;

public class KasekiVer3 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s1 = sc.nextLine();
		String s2 = sc.nextLine();
		sc.close();
		String a = "";
		String b = "";
		int ca1 = 1;
		int ca2 = Nuki(s1, a, ca1).length() + 2;
		int cb1 = 1;
		int cb2 = Nuki(s2, b, cb1).length() + 2;
		int Voa = Integer.parseInt(Nuki(s1, a, ca1));
		int Vob = Integer.parseInt(Nuki(s2, b, cb1));
		int n = 0;
		for(int i = 0; i<4; i++){
			if(Voa >Vob){
				System.out.println("YES");
				break;
			}else if(Voa < Vob){
				System.out.println("NO");
				break;
			}else if(Voa==Vob){
			a = "";
			b = "";
			Voa = 0;
			Vob = 0;
			if(n==0){
				Voa =  Integer.parseInt(Nuki(s1, a, ca2));
				 Vob = Integer.parseInt(Nuki(s2, b, cb2));
			}else if(n==1){
				int ca3 = ca2 + 2;
				int cb3 = cb2 + 2;
				Voa =  Integer.parseInt(Nuki(s1, a, ca3));
				 Vob = Integer.parseInt(Nuki(s2, b, cb3));
				 if(Voa >Vob){
						System.out.println("YES");
						break;
					}else if(Voa < Vob){
						System.out.println("NO");
						break;
					}else if(Voa==Vob){
						System.out.println("YES");
						break;
					}
			}
			n++;
			}
		}
	}
	public static String Nuki(String s, String ab, int c){
		int t;
		while(!(s.substring(c-1, c)).equals(".")){
			ab+=s.substring(c-1, c);
			if(c==s.length()){
				break;
			}else if(c<s.length()){
				c++;
			}
	}
		return ab;
	}
	}
0