結果

問題 No.138 化石のバージョン
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-06-01 14:00:06
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 957 bytes
コンパイル時間 3,642 ms
コンパイル使用メモリ 79,116 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-07-06 13:11:23
合計ジャッジ時間 8,180 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,952 KB
testcase_01 AC 113 ms
53,868 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 103 ms
52,840 KB
testcase_05 AC 112 ms
54,004 KB
testcase_06 AC 105 ms
52,756 KB
testcase_07 AC 115 ms
53,972 KB
testcase_08 AC 113 ms
53,916 KB
testcase_09 AC 114 ms
53,868 KB
testcase_10 AC 115 ms
53,944 KB
testcase_11 AC 111 ms
53,948 KB
testcase_12 AC 103 ms
52,680 KB
testcase_13 AC 100 ms
52,676 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 112 ms
53,840 KB
testcase_23 RE -
testcase_24 AC 113 ms
54,176 KB
testcase_25 AC 113 ms
54,112 KB
testcase_26 AC 112 ms
54,420 KB
testcase_27 AC 100 ms
52,776 KB
testcase_28 AC 105 ms
53,000 KB
testcase_29 AC 103 ms
52,668 KB
testcase_30 AC 98 ms
54,280 KB
testcase_31 AC 111 ms
53,892 KB
testcase_32 AC 104 ms
52,520 KB
testcase_33 AC 99 ms
52,864 KB
testcase_34 AC 112 ms
53,580 KB
testcase_35 AC 112 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package b2015_5_31;

import java.util.Scanner;

public class KasekiVer {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	String s1 = sc.nextLine();
	String s2 = sc.nextLine();
	String a = "";
	String b ="";
	int t1 = 0;
	int t2 = 0;
	int n1 = 1;
	int n2 = 1;
	t1 = Integer.parseInt(Nuki(s1, a, n1));
	t2 =  Integer.parseInt(Nuki(s2, b, n2));
	n1+=Nuki(s1, a, n1).length();
	n2+=Nuki(s2, b, n2).length();
	for(int i = 0; i < 3; i++){
		if(t1 > t2){
			System.out.println("YES");
			break;
		}else if(t1 < t2){
			System.out.println("NO");
			break;
		}else if(t1 == t2){
			a = "";
			b ="";
			t1 = 0;
			t2 = 0;
			t1 = Integer.parseInt(Nuki(s1, a, n1));
			t2 =  Integer.parseInt(Nuki(s2, b, n2));
			n1+=Nuki(s1, a, n1).length();
			n2+=Nuki(s2, b, n2).length();
		}
	}
}
public static String Nuki(String s, String ab, int n){
	while(!(s.substring(n-1, n)).equals(".")){
		ab+=s.substring(n-1, n);
		n++;
}
	return ab;
}
}
0