結果

問題 No.2017 Mod7 Parade
ユーザー tentententen
提出日時 2023-03-29 10:06:14
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,794 bytes
コンパイル時間 2,899 ms
コンパイル使用メモリ 89,272 KB
実行使用メモリ 58,940 KB
最終ジャッジ日時 2024-09-21 03:51:37
合計ジャッジ時間 14,734 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,260 KB
testcase_01 AC 58 ms
49,996 KB
testcase_02 AC 57 ms
50,300 KB
testcase_03 AC 691 ms
58,544 KB
testcase_04 AC 558 ms
58,764 KB
testcase_05 AC 497 ms
58,760 KB
testcase_06 AC 668 ms
58,640 KB
testcase_07 AC 234 ms
56,664 KB
testcase_08 AC 543 ms
58,576 KB
testcase_09 AC 314 ms
58,240 KB
testcase_10 AC 546 ms
58,596 KB
testcase_11 AC 627 ms
58,704 KB
testcase_12 AC 586 ms
58,940 KB
testcase_13 AC 762 ms
58,780 KB
testcase_14 AC 767 ms
58,724 KB
testcase_15 AC 789 ms
58,880 KB
testcase_16 AC 752 ms
58,760 KB
testcase_17 AC 764 ms
58,552 KB
testcase_18 AC 740 ms
58,584 KB
testcase_19 RE -
testcase_20 AC 57 ms
50,392 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