結果

問題 No.2792 Security Cameras on Young Diagram
ユーザー ks2mks2m
提出日時 2024-06-21 23:20:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 650 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 2,289 ms
コンパイル使用メモリ 77,352 KB
実行使用メモリ 66,556 KB
最終ジャッジ日時 2024-06-24 18:46:25
合計ジャッジ時間 11,635 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 202 ms
58,640 KB
testcase_01 AC 202 ms
58,952 KB
testcase_02 AC 203 ms
58,608 KB
testcase_03 AC 241 ms
59,144 KB
testcase_04 AC 275 ms
59,940 KB
testcase_05 AC 218 ms
58,792 KB
testcase_06 AC 274 ms
59,600 KB
testcase_07 AC 265 ms
59,620 KB
testcase_08 AC 252 ms
59,360 KB
testcase_09 AC 217 ms
58,840 KB
testcase_10 AC 240 ms
59,224 KB
testcase_11 AC 276 ms
59,540 KB
testcase_12 AC 522 ms
65,852 KB
testcase_13 AC 485 ms
64,444 KB
testcase_14 AC 517 ms
63,096 KB
testcase_15 AC 399 ms
63,368 KB
testcase_16 AC 564 ms
63,788 KB
testcase_17 AC 611 ms
66,556 KB
testcase_18 AC 384 ms
63,856 KB
testcase_19 AC 355 ms
63,480 KB
testcase_20 AC 465 ms
63,496 KB
testcase_21 AC 206 ms
58,680 KB
testcase_22 AC 213 ms
58,452 KB
testcase_23 AC 650 ms
64,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		int mod = 998244353;
		Kaijou kai = new Kaijou(1000000, mod);
		long ans = 1;
		for (int i = 0; i < n; i++) {
			ans += kai.comb(a[i] + i, i + 1);
			ans %= mod;
		}
		System.out.println(ans);
	}

	static class Kaijou {
		long[] p, pi;
		int m;

		public Kaijou(int n, int mod) {
			n++;
			m = mod;
			p = new long[n];
			pi = new long[n];
			p[0] = 1;
			pi[0] = 1;
			for (int i = 1; i < n; i++) {
				p[i] = p[i - 1] * i % m;
			}
			pi[n - 1] = BigInteger.valueOf(p[n - 1])
					.modInverse(BigInteger.valueOf(m)).longValue();
			for (int i = n - 1; i > 1; i--) {
				pi[i - 1] = pi[i] * i % m;
			}
		}

		public long comb(int n, int r) {
			if (n < r) return 0;
			return p[n] * pi[r] % m * pi[n - r] % m;
		}

		public long perm(int n, int r) {
			if (n < r) return 0;
			return p[n] * pi[n - r] % m;
		}
	}
}
0