結果

問題 No.544 Delete 7
ユーザー htensaihtensai
提出日時 2019-12-10 09:46:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 1,000 ms
コード長 557 bytes
コンパイル時間 2,486 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 56,812 KB
最終ジャッジ日時 2024-06-23 22:04:23
合計ジャッジ時間 12,795 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
55,008 KB
testcase_01 AC 156 ms
55,028 KB
testcase_02 AC 156 ms
54,696 KB
testcase_03 AC 158 ms
54,888 KB
testcase_04 AC 156 ms
54,888 KB
testcase_05 AC 159 ms
54,972 KB
testcase_06 AC 161 ms
54,956 KB
testcase_07 AC 157 ms
55,188 KB
testcase_08 AC 158 ms
54,788 KB
testcase_09 AC 158 ms
55,024 KB
testcase_10 AC 159 ms
55,036 KB
testcase_11 AC 159 ms
54,664 KB
testcase_12 AC 156 ms
54,912 KB
testcase_13 AC 157 ms
55,028 KB
testcase_14 AC 143 ms
54,656 KB
testcase_15 AC 157 ms
54,804 KB
testcase_16 AC 161 ms
54,940 KB
testcase_17 AC 156 ms
55,060 KB
testcase_18 AC 158 ms
54,772 KB
testcase_19 AC 159 ms
55,080 KB
testcase_20 AC 157 ms
54,796 KB
testcase_21 AC 156 ms
54,836 KB
testcase_22 AC 157 ms
54,836 KB
testcase_23 AC 158 ms
54,848 KB
testcase_24 AC 142 ms
54,432 KB
testcase_25 AC 161 ms
54,976 KB
testcase_26 AC 157 ms
54,988 KB
testcase_27 AC 158 ms
54,912 KB
testcase_28 AC 158 ms
55,048 KB
testcase_29 AC 162 ms
55,056 KB
testcase_30 AC 158 ms
54,908 KB
testcase_31 AC 160 ms
55,008 KB
testcase_32 AC 157 ms
54,892 KB
testcase_33 AC 155 ms
54,984 KB
testcase_34 AC 160 ms
54,916 KB
testcase_35 AC 158 ms
55,120 KB
testcase_36 AC 158 ms
54,764 KB
testcase_37 AC 143 ms
54,556 KB
testcase_38 AC 159 ms
56,812 KB
testcase_39 AC 158 ms
55,184 KB
testcase_40 AC 162 ms
54,760 KB
testcase_41 AC 157 ms
54,832 KB
testcase_42 AC 156 ms
54,988 KB
testcase_43 AC 159 ms
55,144 KB
testcase_44 AC 155 ms
55,076 KB
testcase_45 AC 159 ms
55,032 KB
testcase_46 AC 157 ms
55,068 KB
testcase_47 AC 162 ms
54,960 KB
testcase_48 AC 158 ms
55,140 KB
testcase_49 AC 160 ms
55,044 KB
testcase_50 AC 158 ms
54,876 KB
testcase_51 AC 158 ms
54,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        int length = arr.length;
        char[] next = new char[length];
        Arrays.fill(next, '0');
        for (int i = 0; i < length; i++) {
            if (arr[i] == '7') {
                arr[i] = '6';
                next[i] = '1';
            }
        }
        int b = Integer.parseInt(new String(next));
        System.out.println(new String(arr) + " " + b);
    }
}
0