結果

問題 No.544 Delete 7
ユーザー baito_pbaito_p
提出日時 2017-07-14 23:04:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 926 bytes
コンパイル時間 1,822 ms
コンパイル使用メモリ 77,500 KB
実行使用メモリ 50,400 KB
最終ジャッジ日時 2024-11-21 16:11:41
合計ジャッジ時間 6,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
49,928 KB
testcase_01 AC 52 ms
50,388 KB
testcase_02 AC 49 ms
50,340 KB
testcase_03 AC 47 ms
50,164 KB
testcase_04 AC 48 ms
49,916 KB
testcase_05 AC 49 ms
50,144 KB
testcase_06 AC 49 ms
50,192 KB
testcase_07 AC 49 ms
50,400 KB
testcase_08 AC 49 ms
50,176 KB
testcase_09 AC 47 ms
50,288 KB
testcase_10 AC 51 ms
50,176 KB
testcase_11 AC 48 ms
50,156 KB
testcase_12 AC 49 ms
49,952 KB
testcase_13 AC 50 ms
50,320 KB
testcase_14 AC 47 ms
50,332 KB
testcase_15 AC 51 ms
50,212 KB
testcase_16 AC 53 ms
50,180 KB
testcase_17 AC 49 ms
50,300 KB
testcase_18 AC 47 ms
50,144 KB
testcase_19 AC 50 ms
49,864 KB
testcase_20 AC 49 ms
50,264 KB
testcase_21 AC 48 ms
49,788 KB
testcase_22 AC 50 ms
50,020 KB
testcase_23 AC 50 ms
50,120 KB
testcase_24 AC 49 ms
50,276 KB
testcase_25 AC 48 ms
50,164 KB
testcase_26 AC 47 ms
49,912 KB
testcase_27 AC 52 ms
49,968 KB
testcase_28 AC 53 ms
50,152 KB
testcase_29 AC 49 ms
49,860 KB
testcase_30 AC 49 ms
50,268 KB
testcase_31 AC 50 ms
50,272 KB
testcase_32 AC 50 ms
49,904 KB
testcase_33 AC 50 ms
50,280 KB
testcase_34 AC 51 ms
50,216 KB
testcase_35 AC 51 ms
50,152 KB
testcase_36 AC 49 ms
50,096 KB
testcase_37 AC 50 ms
49,996 KB
testcase_38 AC 49 ms
50,084 KB
testcase_39 AC 47 ms
50,316 KB
testcase_40 AC 48 ms
50,300 KB
testcase_41 AC 47 ms
50,240 KB
testcase_42 AC 48 ms
49,912 KB
testcase_43 AC 47 ms
49,916 KB
testcase_44 AC 49 ms
50,168 KB
testcase_45 AC 51 ms
50,208 KB
testcase_46 AC 49 ms
49,764 KB
testcase_47 AC 50 ms
49,904 KB
testcase_48 AC 48 ms
50,304 KB
testcase_49 AC 54 ms
50,280 KB
testcase_50 AC 52 ms
50,012 KB
testcase_51 AC 50 ms
50,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args)throws Exception{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int sum = Integer.parseInt(br.readLine());
		int[] a = new int[10];
		int[] b = new int[10];
		
		for( int i = 0 ; sum > 0 ; i++)
		{
			int temp = sum % 10;
			sum /= 10;
			if(temp == 0)a[ 9 - i ] = 0;
			else if(temp == 8)a[ 9 - i ] = 6;
			else a[ 9 - i ] = temp-1;
			b[9-i]= temp - a[9-i];
			
		}
		boolean fla = false;
		for(int i = 0 ; i < 10 ; i++) {
			if(a[i] == 0) {
				if(fla)System.out.print(0);
			}
			else {
				fla = true;
				System.out.print(a[i]);
			}
		}
		System.out.print(" ");
		fla = false;
		for(int i = 0 ; i < 10 ; i++) {
			if(b[i] == 0) {
				if(fla)System.out.print(0);
			}
			else {
				fla = true;
				System.out.print(b[i]);
			}
		}
		System.out.println("");
	}	
}
0