結果

問題 No.544 Delete 7
ユーザー uafr_csuafr_cs
提出日時 2017-10-29 22:50:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 1,000 ms
コード長 801 bytes
コンパイル時間 2,420 ms
コンパイル使用メモリ 88,148 KB
実行使用メモリ 55,228 KB
最終ジャッジ日時 2024-11-21 16:39:23
合計ジャッジ時間 12,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
55,116 KB
testcase_01 AC 161 ms
54,992 KB
testcase_02 AC 157 ms
54,852 KB
testcase_03 AC 156 ms
54,652 KB
testcase_04 AC 159 ms
54,700 KB
testcase_05 AC 157 ms
55,144 KB
testcase_06 AC 147 ms
54,416 KB
testcase_07 AC 158 ms
54,812 KB
testcase_08 AC 157 ms
54,628 KB
testcase_09 AC 158 ms
54,780 KB
testcase_10 AC 159 ms
54,836 KB
testcase_11 AC 158 ms
55,136 KB
testcase_12 AC 157 ms
54,984 KB
testcase_13 AC 156 ms
54,696 KB
testcase_14 AC 161 ms
54,624 KB
testcase_15 AC 180 ms
54,948 KB
testcase_16 AC 156 ms
54,992 KB
testcase_17 AC 158 ms
54,936 KB
testcase_18 AC 156 ms
54,992 KB
testcase_19 AC 160 ms
54,840 KB
testcase_20 AC 160 ms
54,900 KB
testcase_21 AC 159 ms
55,100 KB
testcase_22 AC 159 ms
55,092 KB
testcase_23 AC 162 ms
54,852 KB
testcase_24 AC 158 ms
55,084 KB
testcase_25 AC 168 ms
54,876 KB
testcase_26 AC 158 ms
54,788 KB
testcase_27 AC 159 ms
54,928 KB
testcase_28 AC 163 ms
55,228 KB
testcase_29 AC 161 ms
54,832 KB
testcase_30 AC 165 ms
54,640 KB
testcase_31 AC 164 ms
54,888 KB
testcase_32 AC 165 ms
54,884 KB
testcase_33 AC 161 ms
54,940 KB
testcase_34 AC 159 ms
54,940 KB
testcase_35 AC 161 ms
54,904 KB
testcase_36 AC 158 ms
54,688 KB
testcase_37 AC 161 ms
54,752 KB
testcase_38 AC 166 ms
54,860 KB
testcase_39 AC 157 ms
54,880 KB
testcase_40 AC 162 ms
55,056 KB
testcase_41 AC 164 ms
54,820 KB
testcase_42 AC 161 ms
54,904 KB
testcase_43 AC 163 ms
54,736 KB
testcase_44 AC 162 ms
55,056 KB
testcase_45 AC 162 ms
54,928 KB
testcase_46 AC 165 ms
54,892 KB
testcase_47 AC 161 ms
54,852 KB
testcase_48 AC 165 ms
54,904 KB
testcase_49 AC 164 ms
55,104 KB
testcase_50 AC 163 ms
54,904 KB
testcase_51 AC 160 ms
54,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.TreeSet;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		char[] chs = sc.next().toCharArray();
		char[] fst = new char[chs.length];
		char[] snd = new char[chs.length];
		
		for(int i = 0; i < chs.length; i++){
			if(chs[i] != '7'){
				fst[i] = chs[i];
				snd[i] = '0';
			}else{
				fst[i] = (char)(chs[i] - 1);
				snd[i] = '1';
			}
		}
		
		final int fst_num = Integer.parseInt(new StringBuilder().append(fst).toString());
		final int snd_num = Integer.parseInt(new StringBuilder().append(snd).toString());
		
		
		System.out.println(fst_num + " " + snd_num);
			
	}
}
0