結果

問題 No.544 Delete 7
ユーザー tentententen
提出日時 2022-08-02 10:26:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 97 ms / 1,000 ms
コード長 1,290 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 79,396 KB
実行使用メモリ 53,060 KB
最終ジャッジ日時 2024-07-23 03:16:26
合計ジャッジ時間 8,975 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
53,024 KB
testcase_01 AC 80 ms
51,568 KB
testcase_02 AC 79 ms
51,168 KB
testcase_03 AC 83 ms
51,360 KB
testcase_04 AC 85 ms
51,592 KB
testcase_05 AC 83 ms
51,256 KB
testcase_06 AC 82 ms
51,272 KB
testcase_07 AC 83 ms
51,248 KB
testcase_08 AC 83 ms
51,228 KB
testcase_09 AC 80 ms
51,184 KB
testcase_10 AC 82 ms
51,020 KB
testcase_11 AC 83 ms
51,320 KB
testcase_12 AC 81 ms
51,300 KB
testcase_13 AC 81 ms
51,288 KB
testcase_14 AC 91 ms
52,956 KB
testcase_15 AC 80 ms
51,256 KB
testcase_16 AC 82 ms
51,356 KB
testcase_17 AC 85 ms
52,952 KB
testcase_18 AC 84 ms
51,312 KB
testcase_19 AC 79 ms
51,048 KB
testcase_20 AC 81 ms
51,088 KB
testcase_21 AC 80 ms
51,348 KB
testcase_22 AC 83 ms
51,232 KB
testcase_23 AC 83 ms
51,268 KB
testcase_24 AC 85 ms
51,120 KB
testcase_25 AC 85 ms
51,344 KB
testcase_26 AC 83 ms
51,260 KB
testcase_27 AC 86 ms
51,184 KB
testcase_28 AC 84 ms
51,000 KB
testcase_29 AC 81 ms
51,324 KB
testcase_30 AC 81 ms
51,176 KB
testcase_31 AC 88 ms
50,908 KB
testcase_32 AC 81 ms
51,220 KB
testcase_33 AC 86 ms
51,376 KB
testcase_34 AC 85 ms
51,588 KB
testcase_35 AC 85 ms
51,032 KB
testcase_36 AC 87 ms
51,284 KB
testcase_37 AC 80 ms
51,156 KB
testcase_38 AC 86 ms
51,144 KB
testcase_39 AC 87 ms
51,036 KB
testcase_40 AC 81 ms
51,460 KB
testcase_41 AC 83 ms
51,384 KB
testcase_42 AC 92 ms
52,152 KB
testcase_43 AC 93 ms
51,448 KB
testcase_44 AC 90 ms
52,012 KB
testcase_45 AC 81 ms
52,824 KB
testcase_46 AC 80 ms
51,336 KB
testcase_47 AC 85 ms
51,132 KB
testcase_48 AC 80 ms
51,312 KB
testcase_49 AC 97 ms
53,060 KB
testcase_50 AC 83 ms
51,044 KB
testcase_51 AC 81 ms
51,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int a = 0;
        int b = 0;
        int base = 1;
        while (n > 0) {
            int m = n % 10;
            if (m == 8) {
                a += base * 6;
                b += base * 2;
            } else if (m > 0) {
                a += base * (m - 1);
                b += base;
            }
            n /= 10;
            base *= 10;
        }
        System.out.println(a + " " + b);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0