結果

問題 No.1458 Segment Function
ユーザー tentententen
提出日時 2024-07-23 10:47:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 2,155 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 78,860 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-07-23 10:47:51
合計ジャッジ時間 6,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,472 KB
testcase_01 AC 53 ms
50,128 KB
testcase_02 AC 53 ms
50,284 KB
testcase_03 AC 53 ms
50,324 KB
testcase_04 AC 54 ms
49,996 KB
testcase_05 AC 53 ms
50,304 KB
testcase_06 AC 53 ms
50,460 KB
testcase_07 AC 53 ms
50,348 KB
testcase_08 AC 108 ms
51,904 KB
testcase_09 AC 109 ms
51,984 KB
testcase_10 AC 108 ms
51,676 KB
testcase_11 AC 131 ms
51,820 KB
testcase_12 AC 109 ms
51,796 KB
testcase_13 AC 90 ms
51,472 KB
testcase_14 AC 100 ms
51,724 KB
testcase_15 AC 100 ms
51,696 KB
testcase_16 AC 100 ms
51,816 KB
testcase_17 AC 100 ms
52,048 KB
testcase_18 AC 131 ms
54,396 KB
testcase_19 AC 126 ms
53,944 KB
testcase_20 AC 125 ms
54,112 KB
testcase_21 AC 133 ms
54,244 KB
testcase_22 AC 128 ms
54,072 KB
testcase_23 AC 54 ms
49,944 KB
testcase_24 AC 110 ms
51,820 KB
testcase_25 AC 57 ms
50,404 KB
testcase_26 AC 128 ms
54,020 KB
testcase_27 AC 127 ms
53,848 KB
testcase_28 AC 52 ms
50,300 KB
testcase_29 AC 110 ms
51,728 KB
testcase_30 AC 111 ms
51,956 KB
testcase_31 AC 107 ms
51,880 KB
testcase_32 AC 115 ms
52,084 KB
testcase_33 AC 106 ms
51,980 KB
testcase_34 AC 109 ms
52,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static int[] exchange = new int[]{6, 2, 5, 5, 4, 5, 6, 4, 7, 6};
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] inputs = sc.next().toCharArray();
        String n = sc.next();
        if (n.length() <= 2) {
            int count = Integer.parseInt(n);
            if (count == 0) {
                System.out.println(inputs);
            } else {
                int current = func(inputs);
                for (int i = 1; i < count; i++) {
                    current = func(String.valueOf(current).toCharArray());
                }
                System.out.println(current);
            }
        } else {
            int current = func(inputs);
            while (current != 4 && current != 6 && current != 5) {
                current = func(String.valueOf(current).toCharArray());
            }
            System.out.println(current);
        }
    }
    
    static int func(char[] arr) {
        int ans = 0;
        for (char c : arr) {
            if (c == '-') {
                ans++;
            } else {
                ans += exchange[c - '0'];
            }
        }
        return ans;
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0