結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,544 KB
testcase_01 AC 158 ms
42,316 KB
testcase_02 AC 157 ms
42,192 KB
testcase_03 AC 159 ms
42,408 KB
testcase_04 AC 158 ms
42,420 KB
testcase_05 AC 160 ms
42,356 KB
testcase_06 AC 158 ms
42,456 KB
testcase_07 AC 158 ms
42,576 KB
testcase_08 AC 160 ms
42,412 KB
testcase_09 AC 158 ms
42,468 KB
testcase_10 AC 157 ms
42,452 KB
testcase_11 AC 162 ms
42,276 KB
testcase_12 AC 159 ms
42,380 KB
testcase_13 AC 160 ms
42,480 KB
testcase_14 AC 157 ms
42,156 KB
testcase_15 AC 158 ms
42,188 KB
testcase_16 AC 160 ms
42,024 KB
testcase_17 AC 161 ms
42,592 KB
testcase_18 AC 157 ms
42,364 KB
testcase_19 AC 160 ms
42,188 KB
testcase_20 AC 157 ms
42,204 KB
testcase_21 AC 158 ms
42,456 KB
testcase_22 AC 158 ms
42,408 KB
testcase_23 AC 157 ms
42,348 KB
testcase_24 AC 156 ms
42,360 KB
testcase_25 AC 155 ms
42,224 KB
testcase_26 AC 155 ms
42,456 KB
testcase_27 AC 161 ms
42,548 KB
testcase_28 AC 162 ms
42,368 KB
testcase_29 AC 155 ms
42,364 KB
testcase_30 AC 162 ms
42,220 KB
testcase_31 AC 160 ms
42,400 KB
testcase_32 AC 161 ms
42,364 KB
testcase_33 AC 157 ms
42,460 KB
testcase_34 AC 150 ms
41,984 KB
testcase_35 AC 164 ms
42,324 KB
testcase_36 AC 160 ms
42,320 KB
testcase_37 AC 159 ms
42,436 KB
testcase_38 AC 147 ms
41,816 KB
testcase_39 AC 158 ms
42,388 KB
testcase_40 AC 160 ms
42,272 KB
testcase_41 AC 146 ms
41,976 KB
testcase_42 AC 159 ms
42,496 KB
testcase_43 AC 160 ms
42,312 KB
testcase_44 AC 159 ms
42,308 KB
testcase_45 AC 158 ms
42,424 KB
testcase_46 AC 149 ms
41,880 KB
testcase_47 AC 157 ms
42,136 KB
testcase_48 AC 156 ms
42,224 KB
testcase_49 AC 161 ms
42,280 KB
testcase_50 AC 158 ms
42,312 KB
testcase_51 AC 155 ms
42,360 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