結果

問題 No.2017 Mod7 Parade
ユーザー tentententen
提出日時 2023-03-29 10:08:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 790 ms / 2,000 ms
コード長 2,798 bytes
コンパイル時間 3,012 ms
コンパイル使用メモリ 88,560 KB
実行使用メモリ 65,148 KB
最終ジャッジ日時 2023-10-21 02:52:00
合計ジャッジ時間 14,444 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
53,596 KB
testcase_01 AC 60 ms
52,524 KB
testcase_02 AC 56 ms
53,612 KB
testcase_03 AC 691 ms
62,196 KB
testcase_04 AC 580 ms
62,068 KB
testcase_05 AC 506 ms
62,256 KB
testcase_06 AC 741 ms
62,104 KB
testcase_07 AC 240 ms
60,272 KB
testcase_08 AC 553 ms
62,044 KB
testcase_09 AC 316 ms
61,252 KB
testcase_10 AC 550 ms
61,884 KB
testcase_11 AC 644 ms
61,976 KB
testcase_12 AC 599 ms
61,968 KB
testcase_13 AC 788 ms
61,972 KB
testcase_14 AC 790 ms
62,028 KB
testcase_15 AC 781 ms
62,144 KB
testcase_16 AC 785 ms
62,140 KB
testcase_17 AC 777 ms
61,972 KB
testcase_18 AC 761 ms
62,156 KB
testcase_19 AC 261 ms
65,148 KB
testcase_20 AC 57 ms
53,620 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