結果

問題 No.544 Delete 7
ユーザー fjafjafjafjafjafja
提出日時 2017-07-17 18:43:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 94 ms / 1,000 ms
コード長 522 bytes
コンパイル時間 3,385 ms
コンパイル使用メモリ 75,308 KB
実行使用メモリ 39,756 KB
最終ジャッジ日時 2024-05-01 12:04:18
合計ジャッジ時間 9,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
38,360 KB
testcase_01 AC 78 ms
37,984 KB
testcase_02 AC 78 ms
38,016 KB
testcase_03 AC 92 ms
39,660 KB
testcase_04 AC 78 ms
38,092 KB
testcase_05 AC 81 ms
38,460 KB
testcase_06 AC 81 ms
38,272 KB
testcase_07 AC 83 ms
38,252 KB
testcase_08 AC 80 ms
38,012 KB
testcase_09 AC 89 ms
38,384 KB
testcase_10 AC 80 ms
37,972 KB
testcase_11 AC 79 ms
38,324 KB
testcase_12 AC 79 ms
38,040 KB
testcase_13 AC 85 ms
38,084 KB
testcase_14 AC 79 ms
38,228 KB
testcase_15 AC 80 ms
38,092 KB
testcase_16 AC 94 ms
38,308 KB
testcase_17 AC 93 ms
39,756 KB
testcase_18 AC 78 ms
38,312 KB
testcase_19 AC 79 ms
38,152 KB
testcase_20 AC 79 ms
38,024 KB
testcase_21 AC 78 ms
38,080 KB
testcase_22 AC 79 ms
37,864 KB
testcase_23 AC 81 ms
38,076 KB
testcase_24 AC 79 ms
37,848 KB
testcase_25 AC 79 ms
38,164 KB
testcase_26 AC 80 ms
38,248 KB
testcase_27 AC 84 ms
37,992 KB
testcase_28 AC 83 ms
38,020 KB
testcase_29 AC 92 ms
39,512 KB
testcase_30 AC 80 ms
37,996 KB
testcase_31 AC 77 ms
38,004 KB
testcase_32 AC 78 ms
37,876 KB
testcase_33 AC 88 ms
39,648 KB
testcase_34 AC 80 ms
38,228 KB
testcase_35 AC 79 ms
38,104 KB
testcase_36 AC 79 ms
38,192 KB
testcase_37 AC 79 ms
37,868 KB
testcase_38 AC 77 ms
38,124 KB
testcase_39 AC 79 ms
38,096 KB
testcase_40 AC 83 ms
39,648 KB
testcase_41 AC 77 ms
37,976 KB
testcase_42 AC 79 ms
38,060 KB
testcase_43 AC 80 ms
38,228 KB
testcase_44 AC 81 ms
37,824 KB
testcase_45 AC 80 ms
38,052 KB
testcase_46 AC 79 ms
37,820 KB
testcase_47 AC 89 ms
37,820 KB
testcase_48 AC 79 ms
38,256 KB
testcase_49 AC 92 ms
38,144 KB
testcase_50 AC 91 ms
38,068 KB
testcase_51 AC 82 ms
38,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class N544 {

	public static void main(String[] args) throws IOException
	{
		BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
		String N=br.readLine();
		int ans=0;
		int A=0;
		int B=0;
		int ok=0;
		int l=N.length();
		for(int i=0;i<l;i++)
		{

			if(N.substring(l-i-1,l-i).equals("7"))
			{
				A=A+(int)Math.pow(10, i);
			}
		}

		B=Integer.parseInt(N)-A;
		System.out.println(A+" "+B);
	}

}
0