結果

問題 No.544 Delete 7
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-19 23:35:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 1,000 ms
コード長 374 bytes
コンパイル時間 3,617 ms
コンパイル使用メモリ 76,440 KB
実行使用メモリ 42,504 KB
最終ジャッジ日時 2024-11-21 16:48:22
合計ジャッジ時間 13,794 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,716 KB
testcase_01 AC 138 ms
42,296 KB
testcase_02 AC 147 ms
42,392 KB
testcase_03 AC 139 ms
42,400 KB
testcase_04 AC 134 ms
42,192 KB
testcase_05 AC 125 ms
42,112 KB
testcase_06 AC 157 ms
42,244 KB
testcase_07 AC 131 ms
41,984 KB
testcase_08 AC 138 ms
42,504 KB
testcase_09 AC 144 ms
42,228 KB
testcase_10 AC 134 ms
42,164 KB
testcase_11 AC 145 ms
42,240 KB
testcase_12 AC 137 ms
42,404 KB
testcase_13 AC 145 ms
42,152 KB
testcase_14 AC 128 ms
41,652 KB
testcase_15 AC 132 ms
41,972 KB
testcase_16 AC 142 ms
42,136 KB
testcase_17 AC 146 ms
42,136 KB
testcase_18 AC 129 ms
41,872 KB
testcase_19 AC 124 ms
40,640 KB
testcase_20 AC 141 ms
42,424 KB
testcase_21 AC 130 ms
41,520 KB
testcase_22 AC 144 ms
42,336 KB
testcase_23 AC 129 ms
42,168 KB
testcase_24 AC 131 ms
41,712 KB
testcase_25 AC 136 ms
42,092 KB
testcase_26 AC 147 ms
42,320 KB
testcase_27 AC 144 ms
42,220 KB
testcase_28 AC 132 ms
42,032 KB
testcase_29 AC 144 ms
41,984 KB
testcase_30 AC 148 ms
42,260 KB
testcase_31 AC 135 ms
42,052 KB
testcase_32 AC 132 ms
42,032 KB
testcase_33 AC 139 ms
42,428 KB
testcase_34 AC 150 ms
42,348 KB
testcase_35 AC 133 ms
41,816 KB
testcase_36 AC 145 ms
42,072 KB
testcase_37 AC 130 ms
41,808 KB
testcase_38 AC 149 ms
42,320 KB
testcase_39 AC 149 ms
42,368 KB
testcase_40 AC 140 ms
42,196 KB
testcase_41 AC 128 ms
41,708 KB
testcase_42 AC 135 ms
42,404 KB
testcase_43 AC 142 ms
42,244 KB
testcase_44 AC 146 ms
42,164 KB
testcase_45 AC 131 ms
41,828 KB
testcase_46 AC 142 ms
42,016 KB
testcase_47 AC 139 ms
42,264 KB
testcase_48 AC 140 ms
42,396 KB
testcase_49 AC 146 ms
42,180 KB
testcase_50 AC 134 ms
41,764 KB
testcase_51 AC 134 ms
41,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No544{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int a = 0, b = 0;
		int N_ = N;
		for(int i = 9; i >= 0; i--){
			int div = N_/(int)Math.pow(10, i);
			if(div == 7) a += Math.pow(10, i);
			N_ -= div*Math.pow(10, i);
		}
		b = N - a;
		System.out.println(a + " " + b);
	}
}
0