結果

問題 No.2017 Mod7 Parade
ユーザー tentententen
提出日時 2023-03-29 10:06:14
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,794 bytes
コンパイル時間 3,970 ms
コンパイル使用メモリ 90,416 KB
実行使用メモリ 62,028 KB
最終ジャッジ日時 2023-10-21 02:50:38
合計ジャッジ時間 15,793 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
52,536 KB
testcase_01 AC 58 ms
52,476 KB
testcase_02 AC 58 ms
52,556 KB
testcase_03 AC 685 ms
61,864 KB
testcase_04 AC 564 ms
61,908 KB
testcase_05 AC 493 ms
61,972 KB
testcase_06 AC 724 ms
61,920 KB
testcase_07 AC 236 ms
60,196 KB
testcase_08 AC 536 ms
62,024 KB
testcase_09 AC 315 ms
61,460 KB
testcase_10 AC 562 ms
61,808 KB
testcase_11 AC 634 ms
61,880 KB
testcase_12 AC 601 ms
61,948 KB
testcase_13 AC 798 ms
62,028 KB
testcase_14 AC 782 ms
61,836 KB
testcase_15 AC 777 ms
61,968 KB
testcase_16 AC 787 ms
61,752 KB
testcase_17 AC 781 ms
60,112 KB
testcase_18 AC 726 ms
61,908 KB
testcase_19 RE -
testcase_20 AC 58 ms
52,520 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[] counts = new int[7];
        for (int i = 0; i < n; i++) {
            int d = sc.nextInt();
            int length = sc.nextInt();
            int p = pow7(3, length);
            int v = order7(d, length);
            int[] next = new int[7];
            for (int j = 0; j < 7; j++) {
                next[(j * p + v) % 7] += counts[j];
                next[(j * p + v) % 7] %= MOD;
            }
            next[v]++;
            for (int j = 0; j < 7; j++) {
                counts[j] += next[j];
                counts[j] %= MOD;
            }
        }
        long ans = 0;
        for (int i = 1; i < 7; i++) {
            ans += counts[i] * (long)i % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    static int order7(int x, int length) {
        if (length == 1) {
            return x;
        } else if (length % 2 == 0) {
            int v = order7(x, length / 2);
            return (v * pow7(3, length / 2) + v) % 7;
        } else {
            return (order7(x, length - 1) * 10 + x) % 7;
        }
    }
    
    static int pow7(int x, int p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow7(x * x % 7, p / 2);
        } else {
            return pow7(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