結果

問題 No.2792 Security Cameras on Young Diagram
ユーザー ks2mks2m
提出日時 2024-06-21 23:19:40
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,116 bytes
コンパイル時間 2,427 ms
コンパイル使用メモリ 78,064 KB
実行使用メモリ 59,728 KB
最終ジャッジ日時 2024-06-21 23:19:51
合計ジャッジ時間 10,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
56,168 KB
testcase_01 AC 154 ms
56,072 KB
testcase_02 AC 148 ms
56,316 KB
testcase_03 AC 181 ms
56,728 KB
testcase_04 AC 207 ms
56,372 KB
testcase_05 AC 190 ms
56,220 KB
testcase_06 AC 210 ms
56,648 KB
testcase_07 AC 203 ms
56,460 KB
testcase_08 AC 203 ms
56,424 KB
testcase_09 AC 162 ms
56,356 KB
testcase_10 AC 201 ms
56,880 KB
testcase_11 AC 235 ms
56,776 KB
testcase_12 AC 464 ms
59,156 KB
testcase_13 AC 397 ms
59,004 KB
testcase_14 RE -
testcase_15 AC 328 ms
58,904 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 289 ms
58,820 KB
testcase_19 AC 267 ms
57,988 KB
testcase_20 AC 385 ms
58,916 KB
testcase_21 AC 151 ms
56,360 KB
testcase_22 AC 155 ms
56,012 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(100000, 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