結果

問題 No.544 Delete 7
ユーザー mosmos_21mosmos_21
提出日時 2017-07-14 22:38:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 553 bytes
コンパイル時間 2,436 ms
コンパイル使用メモリ 86,128 KB
実行使用メモリ 42,764 KB
最終ジャッジ日時 2024-05-01 11:53:33
合計ジャッジ時間 12,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
42,656 KB
testcase_01 AC 156 ms
42,468 KB
testcase_02 AC 157 ms
42,396 KB
testcase_03 AC 158 ms
42,540 KB
testcase_04 AC 163 ms
42,284 KB
testcase_05 AC 165 ms
42,692 KB
testcase_06 AC 167 ms
42,428 KB
testcase_07 AC 164 ms
42,388 KB
testcase_08 AC 163 ms
42,432 KB
testcase_09 AC 160 ms
42,192 KB
testcase_10 AC 158 ms
42,244 KB
testcase_11 AC 152 ms
41,944 KB
testcase_12 AC 157 ms
42,348 KB
testcase_13 AC 162 ms
42,484 KB
testcase_14 AC 159 ms
42,620 KB
testcase_15 AC 160 ms
42,276 KB
testcase_16 AC 163 ms
42,468 KB
testcase_17 AC 157 ms
42,292 KB
testcase_18 AC 158 ms
42,476 KB
testcase_19 AC 160 ms
42,572 KB
testcase_20 AC 166 ms
42,244 KB
testcase_21 AC 166 ms
42,476 KB
testcase_22 AC 160 ms
42,404 KB
testcase_23 AC 156 ms
42,308 KB
testcase_24 AC 157 ms
42,632 KB
testcase_25 AC 160 ms
42,468 KB
testcase_26 AC 159 ms
42,572 KB
testcase_27 AC 162 ms
42,292 KB
testcase_28 AC 155 ms
42,292 KB
testcase_29 AC 155 ms
42,500 KB
testcase_30 AC 157 ms
42,328 KB
testcase_31 AC 156 ms
42,412 KB
testcase_32 AC 156 ms
42,296 KB
testcase_33 AC 159 ms
42,220 KB
testcase_34 AC 159 ms
42,620 KB
testcase_35 AC 160 ms
42,340 KB
testcase_36 AC 147 ms
42,076 KB
testcase_37 AC 157 ms
42,160 KB
testcase_38 AC 159 ms
42,188 KB
testcase_39 AC 159 ms
42,412 KB
testcase_40 AC 157 ms
42,532 KB
testcase_41 AC 158 ms
42,620 KB
testcase_42 AC 156 ms
42,484 KB
testcase_43 AC 157 ms
42,388 KB
testcase_44 AC 155 ms
42,616 KB
testcase_45 AC 155 ms
42,496 KB
testcase_46 AC 159 ms
42,384 KB
testcase_47 AC 158 ms
42,512 KB
testcase_48 AC 155 ms
42,764 KB
testcase_49 AC 160 ms
42,608 KB
testcase_50 AC 154 ms
42,160 KB
testcase_51 AC 155 ms
42,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    Scanner in = new Scanner(System.in);

    public void solve() {
        String n = in.next();
        char[] cs = n.toCharArray();
        int b = 0;
        for(int i = 0; i < cs.length; i++){
            if(cs[cs.length - i - 1] == '7'){
                b += (int)Math.pow(10, i);
                cs[cs.length - i - 1] = '6';
            }
        }
        System.out.println(new String(cs) + " " + b);
        
    }

    public static void main(String[] args) {
        new Main().solve();
    }
}
0