結果

問題 No.293 4>7の世界
ユーザー fjafjafjafjafjafja
提出日時 2017-09-25 23:15:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 3,998 ms
コンパイル使用メモリ 74,908 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-12-30 12:33:56
合計ジャッジ時間 8,441 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
40,552 KB
testcase_01 AC 137 ms
40,904 KB
testcase_02 AC 126 ms
40,244 KB
testcase_03 AC 144 ms
41,064 KB
testcase_04 AC 139 ms
41,152 KB
testcase_05 AC 146 ms
41,060 KB
testcase_06 AC 145 ms
40,896 KB
testcase_07 AC 141 ms
40,756 KB
testcase_08 AC 138 ms
40,860 KB
testcase_09 AC 144 ms
41,156 KB
testcase_10 AC 128 ms
40,044 KB
testcase_11 AC 141 ms
40,880 KB
testcase_12 AC 141 ms
40,992 KB
testcase_13 AC 138 ms
39,852 KB
testcase_14 AC 135 ms
40,864 KB
testcase_15 AC 129 ms
40,028 KB
testcase_16 AC 140 ms
40,812 KB
testcase_17 AC 142 ms
40,988 KB
testcase_18 AC 140 ms
40,744 KB
testcase_19 AC 142 ms
40,992 KB
testcase_20 AC 142 ms
41,040 KB
testcase_21 AC 144 ms
41,364 KB
testcase_22 AC 135 ms
39,924 KB
testcase_23 AC 141 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N293 {

	public static void main(String[] args)
	{
		Scanner sc = new Scanner(System.in);
		long a=sc.nextLong(),b=sc.nextLong();
		long aa=a,bb=b;
		long ans=-1;
		int arank=(int)Math.log10(a)+1,brank=(int)Math.log10(b)+1;
		if(arank!=brank){}
		else
		{
			for(int i=arank;i>0;i--)
			{
				long ten=(long)Math.pow(10, i-1);
				long abuf=aa/ten,bbuf=bb/ten;
				if((abuf==4&&bbuf==7)||(abuf==7&&bbuf==4))
				{ans=(abuf==4)?a:b;break;}
				if(abuf!=bbuf){break;}
				aa-=abuf*ten;bb-=bbuf*ten;
			}

		}

		if(ans==-1)
		{
			ans=(a>=b)?a:b;
		}
		System.out.println(ans);


	}

}
0