結果

問題 No.138 化石のバージョン
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-06-02 16:00:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 1,459 bytes
コンパイル時間 3,571 ms
コンパイル使用メモリ 79,236 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-06-09 08:44:53
合計ジャッジ時間 8,105 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,860 KB
testcase_01 AC 108 ms
54,172 KB
testcase_02 AC 108 ms
52,656 KB
testcase_03 AC 111 ms
53,772 KB
testcase_04 AC 100 ms
53,032 KB
testcase_05 AC 107 ms
52,780 KB
testcase_06 AC 115 ms
54,092 KB
testcase_07 AC 111 ms
54,380 KB
testcase_08 AC 92 ms
52,632 KB
testcase_09 AC 108 ms
53,984 KB
testcase_10 AC 108 ms
54,144 KB
testcase_11 AC 103 ms
52,572 KB
testcase_12 AC 105 ms
53,392 KB
testcase_13 AC 113 ms
54,344 KB
testcase_14 AC 100 ms
53,020 KB
testcase_15 AC 118 ms
53,868 KB
testcase_16 AC 102 ms
52,336 KB
testcase_17 AC 106 ms
53,840 KB
testcase_18 AC 104 ms
52,604 KB
testcase_19 AC 111 ms
53,980 KB
testcase_20 AC 111 ms
54,004 KB
testcase_21 AC 112 ms
54,140 KB
testcase_22 AC 97 ms
54,232 KB
testcase_23 AC 113 ms
54,220 KB
testcase_24 AC 111 ms
54,220 KB
testcase_25 AC 110 ms
53,820 KB
testcase_26 AC 94 ms
52,592 KB
testcase_27 AC 113 ms
54,260 KB
testcase_28 AC 100 ms
52,864 KB
testcase_29 AC 110 ms
54,056 KB
testcase_30 AC 113 ms
54,152 KB
testcase_31 AC 112 ms
54,136 KB
testcase_32 AC 110 ms
52,936 KB
testcase_33 AC 111 ms
53,988 KB
testcase_34 AC 111 ms
53,084 KB
testcase_35 AC 110 ms
53,968 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 = ca1 + Nuki(s1, a, ca1).length() + 1;
		int cb1 = 1;
		int cb2 = cb1 + Nuki(s2, b, cb1).length() + 1;
		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(n==2&&Voa==Vob){
				System.out.println("YES");
				break;
			}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 = ca1 + Nuki(s1, a, ca1).length() + Nuki(s1, a, ca2).length() + 2;
				int cb3 = cb1 + Nuki(s2, b, cb1).length() + Nuki(s2, b, cb2).length() + 2;
				Voa =  Integer.parseInt(Nuki(s1, a, ca3));
				 Vob = Integer.parseInt(Nuki(s2, b, cb3));
					}
			}
			n++;
			}
		}
	public static String Nuki(String s, String ab, int c){
		if(c>s.length()){
			c = s.length();
		}
		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