結果

問題 No.2017 Mod7 Parade
ユーザー tentententen
提出日時 2023-03-29 10:08:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 769 ms / 2,000 ms
コード長 2,798 bytes
コンパイル時間 3,618 ms
コンパイル使用メモリ 90,216 KB
実行使用メモリ 47,272 KB
最終ジャッジ日時 2024-09-21 03:52:54
合計ジャッジ時間 14,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
37,300 KB
testcase_01 AC 56 ms
37,208 KB
testcase_02 AC 55 ms
37,432 KB
testcase_03 AC 643 ms
46,828 KB
testcase_04 AC 540 ms
47,244 KB
testcase_05 AC 449 ms
46,952 KB
testcase_06 AC 681 ms
46,924 KB
testcase_07 AC 234 ms
44,048 KB
testcase_08 AC 537 ms
46,840 KB
testcase_09 AC 306 ms
46,988 KB
testcase_10 AC 552 ms
47,172 KB
testcase_11 AC 618 ms
47,184 KB
testcase_12 AC 582 ms
47,200 KB
testcase_13 AC 764 ms
47,272 KB
testcase_14 AC 753 ms
47,148 KB
testcase_15 AC 769 ms
47,148 KB
testcase_16 AC 765 ms
46,996 KB
testcase_17 AC 758 ms
47,072 KB
testcase_18 AC 728 ms
47,040 KB
testcase_19 AC 261 ms
46,820 KB
testcase_20 AC 58 ms
37,096 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 % 7, 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