結果

問題 No.1844 Divisors Sum Sum
ユーザー nishi5451nishi5451
提出日時 2022-02-21 00:55:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 421 ms / 3,000 ms
コード長 4,177 bytes
コンパイル時間 3,100 ms
コンパイル使用メモリ 75,512 KB
実行使用メモリ 54,696 KB
最終ジャッジ日時 2023-09-11 21:13:21
合計ジャッジ時間 11,010 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 384 ms
54,304 KB
testcase_01 AC 419 ms
54,344 KB
testcase_02 AC 414 ms
54,292 KB
testcase_03 AC 416 ms
54,296 KB
testcase_04 AC 416 ms
54,328 KB
testcase_05 AC 418 ms
54,616 KB
testcase_06 AC 417 ms
54,696 KB
testcase_07 AC 417 ms
54,548 KB
testcase_08 AC 421 ms
54,344 KB
testcase_09 AC 416 ms
54,324 KB
testcase_10 AC 393 ms
52,156 KB
testcase_11 AC 140 ms
51,568 KB
testcase_12 AC 326 ms
54,276 KB
testcase_13 AC 109 ms
52,672 KB
testcase_14 AC 190 ms
51,876 KB
testcase_15 AC 42 ms
49,200 KB
testcase_16 AC 42 ms
49,692 KB
testcase_17 AC 43 ms
49,420 KB
testcase_18 AC 43 ms
49,612 KB
testcase_19 AC 43 ms
49,244 KB
testcase_20 AC 43 ms
49,392 KB
testcase_21 AC 42 ms
47,508 KB
testcase_22 AC 42 ms
49,328 KB
testcase_23 AC 42 ms
49,420 KB
testcase_24 AC 43 ms
49,456 KB
testcase_25 AC 43 ms
49,264 KB
testcase_26 AC 43 ms
49,732 KB
testcase_27 AC 45 ms
49,364 KB
testcase_28 AC 43 ms
49,264 KB
testcase_29 AC 42 ms
49,200 KB
testcase_30 AC 43 ms
49,296 KB
testcase_31 AC 42 ms
49,284 KB
testcase_32 AC 42 ms
49,300 KB
testcase_33 AC 42 ms
49,264 KB
testcase_34 AC 42 ms
49,412 KB
testcase_35 AC 42 ms
49,628 KB
testcase_36 AC 42 ms
49,304 KB
testcase_37 AC 42 ms
49,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Mod {
	private static int MOD = 1000000007;
	private static long[] fac, finv, inv;
	private static int combSize;

	static void setMod(int mod){
		MOD = mod;
	}
	static int mod(){
		return MOD;
	}
	static long pow(long p, long n){
		p %= MOD;
		long ret = 1;
		while(n > 0){
			if((n & 1) == 1) ret = ret * p % MOD;
			p = p * p % MOD;
			n >>= 1;
		}
		return ret;
	}
	static long factorial(int n){
		long ret = 1;
		for(int i = 2; i <= n; i++) ret = ret * i % MOD;
		return ret;
	}
	static long inverse(long a){
		long b = MOD, u = 1, v = 0;
		while(b > 0){
			long t = a / b;
			a -= t * b;
			long tmp1 = a; a = b; b = tmp1;
			u -= t * v;
			long tmp2 = u; u = v; v = tmp2;
		}
		u %= MOD;
		if(u < 0) u += MOD;
		return u;
	}
	static void initTable(int n){
		combSize = n+1;
		fac = new long[combSize];
		finv = new long[combSize];
		inv = new long[combSize];
		fac[0] = fac[1] = 1;
		finv[0] = finv[1] = 1;
		inv[1] = 1;
		for(int i = 2; i < combSize; i++){
			fac[i] = fac[i-1] * i % MOD;
			inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD;
			finv[i] = finv[i-1] * inv[i] % MOD;
		}
	}
	static long comb(int n, int k){
		if(n < k) return 0;
		if(n < 0 || k < 0) return 0;
		return fac[n] * (finv[k] * finv[n-k] % MOD) % MOD;
	}
	static long perm(int n, int k){
		if(n < k) return 0;
		if(n < 0 || k < 0) return 0;
		return fac[n] * finv[n-k] % MOD;
	}
	static long homo(int n, int r){
		if(n < 0 || r < 0) return 0;
		return comb(n+r-1, r);
	}
}

public class Main {
	static final int INF = 1<<30;
	static final long INFL = 1L<<60;
	static final int MOD = 1000000007;
	static final int MOD2 = 998244353;
	static List<List<Integer>> g;
	
	public static void main(String[] args) {
		FastScanner fs = new FastScanner();
		PrintWriter pw = new PrintWriter(System.out);
		int l = fs.nextInt();
		long ans = 1;
		for(int i = 0; i < l; i++){
			long p = fs.nextLong();
			long e = fs.nextLong();
			long a = Mod.inverse(p-1);
			long b = (Mod.pow(p, e+2) - p + MOD) % MOD * Mod.inverse(p-1) % MOD;
			long c = (e+1) % MOD;
			long t = (b - c + MOD) % MOD * a % MOD;
			ans = ans * t % MOD;
		}
		pw.println(ans);

	
		pw.close();
	}
}

class FastScanner {
	private InputStream in = System.in;
	private byte[] buffer = new byte[1024];
	private int length = 0, p = 0;
	private boolean hasNextByte() {
		if (p < length) return true;
		else{
			p = 0;
			try{
				length = in.read(buffer);
			}catch(Exception e){
				e.printStackTrace();
			}
			if(length == 0) return false;
		}
		return true;
	}
	private int readByte() {
		if (hasNextByte() == true) return buffer[p++];
		return -1;
	}
	private static boolean isPrintable(int n) {
		return 33 <= n && n <= 126;
	}
	private void skip() {
		while (hasNextByte() && !isPrintable(buffer[p])) p++;
	}
	public boolean hasNext() {
		skip();
		return hasNextByte();
	}
	public String next() {
		if(!hasNext()) throw new NoSuchElementException();
		StringBuilder sb = new StringBuilder();
		int temp = readByte();
		while (isPrintable(temp)) {
			sb.appendCodePoint(temp);
			temp = readByte();
		}
		return sb.toString();
	}
	public int nextInt() {
		return Math.toIntExact(nextLong());
	}
	public int[] nextInts(int n) {
		int[] ar = new int[n];
		for (int i = 0; i < n; i++) ar[i] = nextInt();
		return ar;
	}
	public long[] nextLongs(int n) {
		long[] ar = new long[n];
		for (int i = 0; i < n; i++) ar[i] = nextLong();
		return ar;
	}
	public long nextLong() {
		if(!hasNext()) throw new NoSuchElementException();
		boolean minus = false;
		int temp = readByte();
		if (temp == '-') {
			minus = true;
			temp = readByte();
		}
		if (temp < '0' || '9' < temp) throw new NumberFormatException();
		long n = 0;
		while (isPrintable(temp)) {
			if ('0' <= temp && temp <= '9') {
				n *= 10;
				n += temp - '0';
			}
			temp = readByte();
		}
		return minus ? -n : n;
	}
	public char[] nextChars() {
		String s = next();
		return s.toCharArray();
	}
	public char[][] nextCharMat(int h, int w) {
		char[][] ar = new char[h][w];
		for(int i = 0; i < h; i++){
			String s = next();
			for(int j = 0; j < w; j++){
				ar[i][j] = s.charAt(j);
			}
		}
		return ar;
	}
}
0