結果

問題 No.544 Delete 7
ユーザー tetsutetsu
提出日時 2017-11-10 00:48:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 587 bytes
コンパイル時間 4,309 ms
コンパイル使用メモリ 81,516 KB
実行使用メモリ 57,000 KB
最終ジャッジ日時 2024-11-21 16:41:11
合計ジャッジ時間 14,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
54,944 KB
testcase_01 AC 156 ms
54,832 KB
testcase_02 AC 157 ms
55,084 KB
testcase_03 AC 157 ms
54,996 KB
testcase_04 AC 159 ms
54,652 KB
testcase_05 AC 163 ms
54,996 KB
testcase_06 AC 158 ms
54,848 KB
testcase_07 AC 158 ms
54,956 KB
testcase_08 AC 156 ms
55,080 KB
testcase_09 AC 158 ms
55,080 KB
testcase_10 AC 165 ms
54,756 KB
testcase_11 AC 156 ms
54,888 KB
testcase_12 AC 158 ms
54,940 KB
testcase_13 AC 160 ms
54,828 KB
testcase_14 AC 167 ms
54,856 KB
testcase_15 AC 166 ms
57,000 KB
testcase_16 AC 159 ms
55,028 KB
testcase_17 AC 158 ms
54,784 KB
testcase_18 AC 158 ms
55,120 KB
testcase_19 AC 163 ms
54,864 KB
testcase_20 AC 163 ms
54,912 KB
testcase_21 AC 158 ms
54,800 KB
testcase_22 AC 157 ms
55,040 KB
testcase_23 AC 157 ms
54,900 KB
testcase_24 AC 157 ms
54,900 KB
testcase_25 AC 157 ms
54,956 KB
testcase_26 AC 160 ms
55,048 KB
testcase_27 AC 160 ms
55,176 KB
testcase_28 AC 160 ms
54,896 KB
testcase_29 AC 160 ms
55,052 KB
testcase_30 AC 157 ms
54,944 KB
testcase_31 AC 163 ms
54,784 KB
testcase_32 AC 158 ms
54,960 KB
testcase_33 AC 158 ms
55,048 KB
testcase_34 AC 161 ms
54,976 KB
testcase_35 AC 160 ms
54,936 KB
testcase_36 AC 157 ms
54,880 KB
testcase_37 AC 156 ms
55,028 KB
testcase_38 AC 153 ms
56,988 KB
testcase_39 AC 157 ms
55,068 KB
testcase_40 AC 154 ms
54,884 KB
testcase_41 AC 161 ms
55,048 KB
testcase_42 AC 158 ms
55,108 KB
testcase_43 AC 157 ms
55,088 KB
testcase_44 AC 157 ms
54,888 KB
testcase_45 AC 158 ms
55,132 KB
testcase_46 AC 158 ms
55,120 KB
testcase_47 AC 157 ms
55,080 KB
testcase_48 AC 156 ms
54,956 KB
testcase_49 AC 162 ms
54,976 KB
testcase_50 AC 158 ms
54,896 KB
testcase_51 AC 155 ms
55,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.*;

public class P544 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int copy = N;
		int ketasuu = 0;
		while(copy!=0) {
			copy /=10;
			ketasuu++;
		}
		copy = N;
		ArrayList<Integer> l = new ArrayList<>();
		for(int i=0; i<ketasuu; i++) {
			if(copy%10==7) {
				l.add(1);
			} else {
				l.add(0);
			}
			copy/=10;
		}
		int A = 0;
		Collections.reverse(l);
		for(int x : l) {
			A*= 10;
			A+=x;
		}
		System.out.println(A + " " + (N-A));
	}

}
0