結果

問題 No.2017 Mod7 Parade
ユーザー tentententen
提出日時 2023-04-27 09:09:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 732 ms / 2,000 ms
コード長 2,813 bytes
コンパイル時間 5,873 ms
コンパイル使用メモリ 84,604 KB
実行使用メモリ 47,136 KB
最終ジャッジ日時 2024-11-16 16:29:20
合計ジャッジ時間 14,860 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,756 KB
testcase_01 AC 51 ms
36,964 KB
testcase_02 AC 51 ms
37,032 KB
testcase_03 AC 646 ms
46,924 KB
testcase_04 AC 480 ms
46,548 KB
testcase_05 AC 420 ms
46,532 KB
testcase_06 AC 639 ms
46,708 KB
testcase_07 AC 220 ms
44,304 KB
testcase_08 AC 467 ms
46,732 KB
testcase_09 AC 286 ms
46,444 KB
testcase_10 AC 492 ms
46,784 KB
testcase_11 AC 575 ms
47,108 KB
testcase_12 AC 538 ms
46,696 KB
testcase_13 AC 669 ms
46,840 KB
testcase_14 AC 718 ms
46,656 KB
testcase_15 AC 716 ms
46,800 KB
testcase_16 AC 721 ms
46,860 KB
testcase_17 AC 732 ms
47,136 KB
testcase_18 AC 678 ms
46,912 KB
testcase_19 AC 252 ms
46,404 KB
testcase_20 AC 50 ms
36,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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];
        while (n-- > 0) {
            int x = sc.nextInt() % 7;
            int length = sc.nextInt();
            int target = getLength(x, length);
            int[] current = new int[7];
            int base = pow(3, length);
            for (int i = 0; i < 7; i++) {
                current[(i * base + target) % 7] += dp[i];
                current[(i * base + target) % 7] %= MOD;
            }
            for (int i = 0; i < 7; i++) {
                dp[i] += current[i];
                dp[i] %= MOD;
            }
            dp[target]++;
        }
        long ans = 0;
        for (int i = 1; i < 7; i++) {
            ans += (long)dp[i] * i % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    static int getLength(int x, int length) {
        if (length == 1) {
            return x;
        } else if (length % 2 == 0) {
            int tmp = getLength(x, length / 2);
            return (tmp * pow(3, length / 2) + tmp) % 7;
        } else {
            return (getLength(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 Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0