結果

問題 No.544 Delete 7
ユーザー fjafjafjafjafjafja
提出日時 2017-07-17 18:43:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 87 ms / 1,000 ms
コード長 522 bytes
コンパイル時間 2,963 ms
コンパイル使用メモリ 79,444 KB
実行使用メモリ 39,360 KB
最終ジャッジ日時 2024-11-21 16:20:38
合計ジャッジ時間 8,324 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
38,136 KB
testcase_01 AC 71 ms
37,804 KB
testcase_02 AC 87 ms
38,644 KB
testcase_03 AC 76 ms
38,228 KB
testcase_04 AC 76 ms
38,116 KB
testcase_05 AC 79 ms
38,268 KB
testcase_06 AC 66 ms
38,184 KB
testcase_07 AC 69 ms
38,228 KB
testcase_08 AC 68 ms
37,996 KB
testcase_09 AC 76 ms
38,340 KB
testcase_10 AC 79 ms
37,804 KB
testcase_11 AC 70 ms
37,968 KB
testcase_12 AC 68 ms
38,220 KB
testcase_13 AC 71 ms
38,032 KB
testcase_14 AC 65 ms
38,000 KB
testcase_15 AC 77 ms
38,908 KB
testcase_16 AC 70 ms
38,144 KB
testcase_17 AC 77 ms
38,268 KB
testcase_18 AC 66 ms
37,704 KB
testcase_19 AC 64 ms
37,992 KB
testcase_20 AC 65 ms
38,060 KB
testcase_21 AC 66 ms
37,976 KB
testcase_22 AC 65 ms
37,988 KB
testcase_23 AC 65 ms
38,212 KB
testcase_24 AC 68 ms
37,996 KB
testcase_25 AC 70 ms
38,216 KB
testcase_26 AC 67 ms
37,688 KB
testcase_27 AC 77 ms
38,328 KB
testcase_28 AC 67 ms
37,944 KB
testcase_29 AC 66 ms
37,680 KB
testcase_30 AC 69 ms
38,048 KB
testcase_31 AC 63 ms
38,140 KB
testcase_32 AC 75 ms
38,036 KB
testcase_33 AC 66 ms
37,708 KB
testcase_34 AC 63 ms
38,212 KB
testcase_35 AC 67 ms
38,032 KB
testcase_36 AC 74 ms
38,096 KB
testcase_37 AC 71 ms
37,812 KB
testcase_38 AC 69 ms
37,980 KB
testcase_39 AC 72 ms
39,360 KB
testcase_40 AC 68 ms
38,136 KB
testcase_41 AC 67 ms
37,764 KB
testcase_42 AC 65 ms
37,848 KB
testcase_43 AC 77 ms
38,260 KB
testcase_44 AC 70 ms
38,200 KB
testcase_45 AC 68 ms
37,804 KB
testcase_46 AC 71 ms
38,340 KB
testcase_47 AC 78 ms
38,528 KB
testcase_48 AC 73 ms
38,268 KB
testcase_49 AC 70 ms
38,028 KB
testcase_50 AC 83 ms
38,836 KB
testcase_51 AC 74 ms
38,108 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