結果

問題 No.1458 Segment Function
ユーザー tentententen
提出日時 2021-04-13 10:04:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,560 bytes
コンパイル時間 1,876 ms
コンパイル使用メモリ 78,024 KB
実行使用メモリ 54,588 KB
最終ジャッジ日時 2024-06-29 04:18:16
合計ジャッジ時間 6,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
49,888 KB
testcase_01 AC 49 ms
50,236 KB
testcase_02 AC 47 ms
49,836 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 45 ms
50,400 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 103 ms
51,968 KB
testcase_10 WA -
testcase_11 AC 102 ms
52,876 KB
testcase_12 AC 92 ms
51,752 KB
testcase_13 AC 92 ms
51,972 KB
testcase_14 AC 94 ms
51,544 KB
testcase_15 AC 93 ms
51,660 KB
testcase_16 AC 98 ms
51,812 KB
testcase_17 AC 93 ms
51,348 KB
testcase_18 AC 120 ms
54,148 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 121 ms
53,864 KB
testcase_22 WA -
testcase_23 AC 52 ms
50,388 KB
testcase_24 WA -
testcase_25 AC 50 ms
50,132 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 94 ms
52,116 KB
testcase_32 AC 93 ms
51,656 KB
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long value = 0;
        for (char c : sc.next().toCharArray()) {
            if (c == '-') {
                value++;
            } else {
                value += function(c - '0');
            }
        }
        String n = sc.next();
        int time = 6;
        if (n.length() == 1 && Integer.parseInt(n) < 6) {
            time = Integer.parseInt(n);
        }
        for (int i = 1; i < time; i++) {
            value = function(value);
        }
        System.out.println(value);
    }
    
    static int[] CONST = new int[]{6, 2, 5, 5, 4, 5, 6, 4, 7, 6};
    
    static int function(long x) {
        if (x < 10) {
            return CONST[(int)x];
        }
        int ans = 0;
        if (x > 0) {
            ans += CONST[(int)(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 String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0