結果

問題 No.1458 Segment Function
ユーザー tentententen
提出日時 2022-07-28 10:35:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 1,754 bytes
コンパイル時間 2,222 ms
コンパイル使用メモリ 78,224 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-10-12 13:39:32
合計ジャッジ時間 6,737 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,120 KB
testcase_01 AC 52 ms
36,868 KB
testcase_02 AC 52 ms
37,200 KB
testcase_03 AC 52 ms
37,268 KB
testcase_04 AC 53 ms
37,048 KB
testcase_05 AC 52 ms
37,032 KB
testcase_06 AC 52 ms
37,300 KB
testcase_07 AC 53 ms
37,136 KB
testcase_08 AC 112 ms
39,944 KB
testcase_09 AC 104 ms
40,108 KB
testcase_10 AC 115 ms
40,116 KB
testcase_11 AC 112 ms
39,984 KB
testcase_12 AC 113 ms
40,080 KB
testcase_13 AC 100 ms
40,352 KB
testcase_14 AC 104 ms
40,284 KB
testcase_15 AC 105 ms
39,672 KB
testcase_16 AC 106 ms
40,164 KB
testcase_17 AC 103 ms
39,940 KB
testcase_18 AC 120 ms
41,528 KB
testcase_19 AC 137 ms
41,768 KB
testcase_20 AC 135 ms
41,268 KB
testcase_21 AC 130 ms
41,564 KB
testcase_22 AC 133 ms
41,364 KB
testcase_23 AC 53 ms
37,348 KB
testcase_24 AC 104 ms
40,076 KB
testcase_25 AC 52 ms
37,172 KB
testcase_26 AC 136 ms
41,440 KB
testcase_27 AC 130 ms
41,412 KB
testcase_28 AC 52 ms
36,972 KB
testcase_29 AC 107 ms
40,120 KB
testcase_30 AC 112 ms
40,060 KB
testcase_31 AC 100 ms
40,072 KB
testcase_32 AC 113 ms
40,896 KB
testcase_33 AC 111 ms
40,076 KB
testcase_34 AC 103 ms
40,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int[] WEIGHTS = 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[] p = sc.next().toCharArray();
        char[] num = sc.next().toCharArray();
        int count;
        if (num.length < 3) {
            count = Math.min(7, Integer.parseInt(new String(num)));
        } else {
            count = 7;
        }
        if (count == 0) {
            System.out.println(p);
            return;
        }
        int ans = 0;
        for (char c : p) {
            if (c == '-') {
                ans++;
            } else {
                ans += WEIGHTS[c - '0'];
            }
        }
        for (int i = 0; i < count - 1; i++) {
            ans = getAns(ans);
        }
        System.out.println(ans);
    }
    
    static int getAns(int x) {
        int ans = 0;
        while (x > 0) {
            ans += WEIGHTS[x % 10];
            x /= 10;
        }
        return ans;
    }
}
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