結果

問題 No.797 Noelちゃんとピラミッド
ユーザー GrenacheGrenache
提出日時 2019-04-29 16:25:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 7,868 bytes
コンパイル時間 5,905 ms
コンパイル使用メモリ 75,588 KB
実行使用メモリ 56,736 KB
最終ジャッジ日時 2023-08-26 01:36:21
合計ジャッジ時間 16,453 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,416 KB
testcase_01 AC 46 ms
49,404 KB
testcase_02 AC 45 ms
49,428 KB
testcase_03 AC 163 ms
55,060 KB
testcase_04 AC 161 ms
55,024 KB
testcase_05 AC 162 ms
55,028 KB
testcase_06 AC 163 ms
54,992 KB
testcase_07 AC 163 ms
56,736 KB
testcase_08 AC 163 ms
55,220 KB
testcase_09 AC 163 ms
55,468 KB
testcase_10 AC 163 ms
54,912 KB
testcase_11 AC 163 ms
55,276 KB
testcase_12 AC 164 ms
55,420 KB
testcase_13 AC 162 ms
55,268 KB
testcase_14 AC 161 ms
54,976 KB
testcase_15 AC 162 ms
55,380 KB
testcase_16 AC 162 ms
55,276 KB
testcase_17 AC 163 ms
55,260 KB
testcase_18 AC 162 ms
55,208 KB
testcase_19 AC 161 ms
55,392 KB
testcase_20 AC 161 ms
54,948 KB
testcase_21 AC 162 ms
55,100 KB
testcase_22 AC 163 ms
55,116 KB
testcase_23 AC 159 ms
52,752 KB
testcase_24 AC 107 ms
52,588 KB
testcase_25 AC 149 ms
52,852 KB
testcase_26 AC 144 ms
53,020 KB
testcase_27 AC 163 ms
55,052 KB
testcase_28 AC 159 ms
55,328 KB
testcase_29 AC 97 ms
53,572 KB
testcase_30 AC 107 ms
52,800 KB
testcase_31 AC 149 ms
53,140 KB
testcase_32 AC 116 ms
52,944 KB
testcase_33 AC 148 ms
52,700 KB
testcase_34 AC 126 ms
53,124 KB
testcase_35 AC 161 ms
54,956 KB
testcase_36 AC 92 ms
52,324 KB
testcase_37 AC 159 ms
55,256 KB
testcase_38 AC 159 ms
55,056 KB
testcase_39 AC 136 ms
52,876 KB
testcase_40 AC 92 ms
51,504 KB
testcase_41 AC 101 ms
52,504 KB
testcase_42 AC 145 ms
52,840 KB
testcase_43 AC 48 ms
49,440 KB
testcase_44 AC 49 ms
49,480 KB
testcase_45 AC 50 ms
49,480 KB
testcase_46 AC 48 ms
49,748 KB
testcase_47 AC 47 ms
49,576 KB
testcase_48 AC 46 ms
49,484 KB
testcase_49 AC 47 ms
49,540 KB
testcase_50 AC 48 ms
49,352 KB
testcase_51 AC 49 ms
49,612 KB
testcase_52 AC 48 ms
49,376 KB
testcase_53 AC 46 ms
49,532 KB
testcase_54 AC 46 ms
49,372 KB
testcase_55 AC 47 ms
49,428 KB
testcase_56 AC 48 ms
49,428 KB
testcase_57 AC 49 ms
49,616 KB
testcase_58 AC 46 ms
49,420 KB
testcase_59 AC 46 ms
49,472 KB
testcase_60 AC 46 ms
49,568 KB
testcase_61 AC 45 ms
49,620 KB
testcase_62 AC 49 ms
49,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.NoSuchElementException;


public class Main_yukicoder797 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		final int MOD = 1_000_000_007;

		int n = sc.nextInt();

		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}

		PC pc = new PC(n, MOD);
		long ans = 0;
		for (int i = 0; i < n; i++) {
			ans += (long)a[i] * pc.C(n - 1, i);
			ans %= MOD;
		}
		
		pr.println(ans);
	}

    static class PC {
    	// MOD must be a prime number.
    	int MOD;
    	// fact[i] : i! % MOD
    	long[] fact;
    	// ifact[i] : 1/i! % MOD
    	long[] ifact;

    	PC(int size, int MOD) {
    		// O(size)
    		// n=sizeまでのnCrを求める。
    		// nHrはn+r-1Crになってしまうので注意

    		this.MOD = MOD;

    		fact = new long[size + 1];
    		fact[0] = 1;
    		for (int i = 1; i <= size; i++) {
    			fact[i] = fact[i - 1] * i % MOD;
    		}

    		ifact = new long[size + 1];

    		int loop = MOD - 2;
    		long x = fact[size];
    		ifact[size] = 1;
    		while (loop > 0) {
    			if (loop % 2 == 1) {
    				ifact[size] = ifact[size] * x % MOD;
    			}
    			x = x * x % MOD;
    			loop /= 2;
    		}

    		for (int i = size - 1; i >= 0; i--) {
    			ifact[i] = ifact[i + 1] * (i + 1) % MOD;
    		}

    	}

    	// 組合せの数
    	int C(int n, int r) {
    		if (r > n) {
    			return 0;
    		}

    		return (int)(((fact[n] * ifact[n - r]) % MOD) * ifact[r] % MOD);
    	}

    	// 順列
    	int P(int n, int r) {
    		if (r > n) {
    			return 0;
    		}

    		return (int)((fact[n] * ifact[n -r]) % MOD);
    	}

    	// 重複組み合わせ
    	// 異なるn種のものから重複を許してr個を選ぶ場合の数
    	// 0個の種類もあり得る
    	int H(int n, int r) {
    		if (n == 0 && r == 0) {
    			return 1;
    		}

    		return C(n + r - 1, r);
    	}

    	// 組合せの数(nが大きいとき)
    	//   O(r)で求めることができる。rはsizeの大きさまで
    	int C2(long n, int r) {
    		long ret = ifact[r];
    		for (int i = 1; i <= r; i++) {
    			long tmp = (n - r + i) % MOD;
    			ret = (ret * tmp) % MOD;
    		}

    		return (int)ret;
    	}

    	// 第2種スターリング数
    	// n人をちょうどr個のグループに分ける(グループの区別はなし)
    	// グループの区別をする場合はr!S(n,r)。全射の場合の数と同義
    	// O(r log n)
    	int S(long n, int r) {
    		//全射の場合の数を包除原理を使って求めて、1/r!をかける。
    		long ret = 0;
    		for (int i = 1; i <= r; i++) {
    			long tmp = (r - i) % 2 == 0 ? 1 : -1;
    			tmp *= pow(i, n) * C(r, i) % MOD;
    			ret = (ret + tmp + MOD) % MOD;
    		}
    		ret = ret * ifact[r] % MOD;

    		return (int)ret;
    	}

    	long pow(int a, long n) {
    		long loop = n;
    		long ret = 1;
    		long x = a;
    		while (loop > 0) {
    			if (loop % 2 == 1) {
    				ret = ret * x % MOD;
    			}
    			x = x * x % MOD;
    			loop /= 2;
    		}

    		return ret;
    	}

    	// 組合せの数
    	// パスカルの三角形MODなし
		// 限界:n=66 : 66C33=7219428434016265740
    	private final static int LIMIT = 66;
    	private static int to;
    	private static long[][] cache;

    	static long CLong(int n, int r) {
    		if (r > n) {
    			return 0;
    		}

    		if (n > LIMIT) {
    			throw new IllegalArgumentException(Integer.toString(n));
    		}

    		if (cache == null) {
    			cache = new long[LIMIT + 1][];
    			cache[0] = new long[1];
    			cache[0][0] = 1;
    			to = 0;
    		}

    		if (cache[n] == null) {
    			for (int i = to + 1; i <= n; i++) {
    				cache[i] = new long[i + 1];
    				for (int j = 0; j <= i; j++) {
    					if (j == 0 || j == i) {
    						cache[i][j] = 1;
    					} else {
    						if (Long.MAX_VALUE - cache[i - 1][j - 1] < cache[i - 1][j]) {
    			    			throw new IllegalArgumentException("Overflow");
    						} else {
    							cache[i][j] = cache[i - 1][j - 1] + cache[i - 1][j];
    						}
    					}
    				}
    			}
    			to = n;
    		}

    		return cache[n][r];
    	}
    }

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Scanner {
		BufferedReader br;

		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}

		private boolean isPrintable(int ch) {
			return ch >= '!' && ch <= '~';
		}

		private boolean isCRLF(int ch) {
			return ch == '\n' || ch == '\r' || ch == -1;
		}

		private int nextPrintable() {
			try {
				int ch;
				while (!isPrintable(ch = br.read())) {
					if (ch == -1) {
						throw new NoSuchElementException();
					}
				}

				return ch;
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		String next() {
			try {
				int ch = nextPrintable();
				StringBuilder sb = new StringBuilder();
				do {
					sb.appendCodePoint(ch);
				} while (isPrintable(ch = br.read()));

				return sb.toString();
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		int nextInt() {
			try {
				// parseInt from Integer.parseInt()
				boolean negative = false;
				int res = 0;
				int limit = -Integer.MAX_VALUE;
				int radix = 10;

				int fc = nextPrintable();
				if (fc < '0') {
					if (fc == '-') {
						negative = true;
						limit = Integer.MIN_VALUE;
					} else if (fc != '+') {
						throw new NumberFormatException();
					}
					fc = br.read();
				}
				int multmin = limit / radix;

				int ch = fc;
				do {
					int digit = ch - '0';
					if (digit < 0 || digit >= radix) {
						throw new NumberFormatException();
					}
					if (res < multmin) {
						throw new NumberFormatException();
					}
					res *= radix;
					if (res < limit + digit) {
						throw new NumberFormatException();
					}
					res -= digit;

				} while (isPrintable(ch = br.read()));

				return negative ? res : -res;
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		long nextLong() {
			try {
				// parseLong from Long.parseLong()
				boolean negative = false;
				long res = 0;
				long limit = -Long.MAX_VALUE;
				int radix = 10;

				int fc = nextPrintable();
				if (fc < '0') {
					if (fc == '-') {
						negative = true;
						limit = Long.MIN_VALUE;
					} else if (fc != '+') {
						throw new NumberFormatException();
					}
					fc = br.read();
				}
				long multmin = limit / radix;

				int ch = fc;
				do {
					int digit = ch - '0';
					if (digit < 0 || digit >= radix) {
						throw new NumberFormatException();
					}
					if (res < multmin) {
						throw new NumberFormatException();
					}
					res *= radix;
					if (res < limit + digit) {
						throw new NumberFormatException();
					}
					res -= digit;

				} while (isPrintable(ch = br.read()));

				return negative ? res : -res;
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		float nextFloat() {
			return Float.parseFloat(next());
		}

		double nextDouble() {
			return Double.parseDouble(next());
		}

		String nextLine() {
			try {
				int ch;
				while (isCRLF(ch = br.read())) {
					if (ch == -1) {
						throw new NoSuchElementException();
					}
				}
				StringBuilder sb = new StringBuilder();
				do {
					sb.appendCodePoint(ch);
				} while (!isCRLF(ch = br.read()));

				return sb.toString();
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new NoSuchElementException();
			}
		}
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0