結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
54,976 KB
testcase_01 AC 159 ms
54,904 KB
testcase_02 AC 157 ms
54,636 KB
testcase_03 AC 155 ms
55,000 KB
testcase_04 AC 154 ms
42,456 KB
testcase_05 AC 157 ms
42,116 KB
testcase_06 AC 157 ms
42,224 KB
testcase_07 AC 156 ms
42,176 KB
testcase_08 AC 155 ms
42,244 KB
testcase_09 AC 154 ms
42,156 KB
testcase_10 AC 156 ms
42,224 KB
testcase_11 AC 156 ms
42,604 KB
testcase_12 AC 161 ms
42,264 KB
testcase_13 AC 158 ms
42,320 KB
testcase_14 AC 157 ms
42,508 KB
testcase_15 AC 157 ms
42,024 KB
testcase_16 AC 156 ms
42,076 KB
testcase_17 AC 158 ms
42,476 KB
testcase_18 AC 157 ms
42,224 KB
testcase_19 AC 158 ms
42,168 KB
testcase_20 AC 145 ms
42,084 KB
testcase_21 AC 155 ms
42,300 KB
testcase_22 AC 155 ms
42,352 KB
testcase_23 AC 154 ms
42,468 KB
testcase_24 AC 155 ms
42,312 KB
testcase_25 AC 154 ms
41,904 KB
testcase_26 AC 143 ms
42,032 KB
testcase_27 AC 155 ms
42,304 KB
testcase_28 AC 143 ms
41,836 KB
testcase_29 AC 158 ms
42,320 KB
testcase_30 AC 156 ms
42,352 KB
testcase_31 AC 159 ms
42,296 KB
testcase_32 AC 155 ms
42,316 KB
testcase_33 AC 156 ms
42,392 KB
testcase_34 AC 157 ms
42,092 KB
testcase_35 AC 145 ms
41,832 KB
testcase_36 AC 155 ms
42,376 KB
testcase_37 AC 145 ms
41,936 KB
testcase_38 AC 156 ms
42,352 KB
testcase_39 AC 160 ms
42,424 KB
testcase_40 AC 161 ms
42,352 KB
testcase_41 AC 159 ms
42,300 KB
testcase_42 AC 159 ms
42,604 KB
testcase_43 AC 160 ms
42,732 KB
testcase_44 AC 158 ms
42,204 KB
testcase_45 AC 160 ms
42,144 KB
testcase_46 AC 144 ms
41,916 KB
testcase_47 AC 158 ms
42,608 KB
testcase_48 AC 156 ms
42,300 KB
testcase_49 AC 158 ms
42,524 KB
testcase_50 AC 161 ms
42,300 KB
testcase_51 AC 157 ms
42,224 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