結果

問題 No.2017 Mod7 Parade
ユーザー tentententen
提出日時 2022-07-25 21:34:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 787 ms / 2,000 ms
コード長 2,241 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 77,668 KB
実行使用メモリ 47,272 KB
最終ジャッジ日時 2024-07-08 00:15:15
合計ジャッジ時間 14,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,832 KB
testcase_01 AC 54 ms
36,964 KB
testcase_02 AC 54 ms
37,140 KB
testcase_03 AC 685 ms
47,076 KB
testcase_04 AC 549 ms
47,096 KB
testcase_05 AC 503 ms
46,980 KB
testcase_06 AC 710 ms
47,116 KB
testcase_07 AC 230 ms
43,708 KB
testcase_08 AC 541 ms
47,272 KB
testcase_09 AC 317 ms
46,176 KB
testcase_10 AC 542 ms
47,180 KB
testcase_11 AC 643 ms
47,152 KB
testcase_12 AC 597 ms
47,196 KB
testcase_13 AC 766 ms
47,248 KB
testcase_14 AC 750 ms
46,992 KB
testcase_15 AC 787 ms
47,188 KB
testcase_16 AC 785 ms
46,980 KB
testcase_17 AC 743 ms
47,104 KB
testcase_18 AC 767 ms
47,112 KB
testcase_19 AC 278 ms
47,024 KB
testcase_20 AC 54 ms
37,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] dp = new int[7];
        for (int i = 1; i <= n; i++) {
            dp[0]++;
            int[] next = new int[7];
            int x = sc.nextInt();
            int length = sc.nextInt();
            int mod = getMOD(x, length);
            int by = pow(10, length);
            for (int j = 0; j < 7; j++) {
                next[(j * by + mod) % 7] += dp[j];
                next[(j * by + mod) % 7] %= MOD;
            }
            dp[0]--;
            for (int j = 0; j < 7; j++) {
                dp[j] += next[j];
                dp[j] %= MOD;
            }
        }
        long ans = 0;
        for (int i = 0; i < 7; i++) {
            ans += (long)i * dp[i] % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    static int getMOD(int x, int length) {
        if (length == 1) {
            return x % 7;
        } else if (length % 2 == 0) {
            int tmp = getMOD(x, length / 2);
            return (tmp * pow(10, length / 2) + tmp) % 7;
        } else {
            return (getMOD(x, length - 1) * 10 + x) % 7;
        }
    }
    
    static int pow(int x, int p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % 7, p / 2);
        } else {
            return pow(x, p - 1) * x % 7;
        }
    }
}
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 {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0