結果

問題 No.1336 Union on Blackboard
ユーザー ks2mks2m
提出日時 2021-01-15 21:35:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 1,934 ms
コンパイル使用メモリ 73,924 KB
実行使用メモリ 46,816 KB
最終ジャッジ日時 2024-11-26 13:32:38
合計ジャッジ時間 9,888 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,044 KB
testcase_01 AC 207 ms
45,372 KB
testcase_02 AC 206 ms
45,644 KB
testcase_03 AC 215 ms
45,444 KB
testcase_04 AC 212 ms
45,700 KB
testcase_05 AC 212 ms
45,404 KB
testcase_06 AC 213 ms
45,464 KB
testcase_07 AC 210 ms
45,296 KB
testcase_08 AC 211 ms
45,496 KB
testcase_09 AC 208 ms
45,668 KB
testcase_10 AC 228 ms
45,752 KB
testcase_11 AC 229 ms
46,264 KB
testcase_12 AC 234 ms
45,844 KB
testcase_13 AC 240 ms
46,620 KB
testcase_14 AC 235 ms
45,900 KB
testcase_15 AC 243 ms
46,012 KB
testcase_16 AC 234 ms
46,816 KB
testcase_17 AC 230 ms
45,740 KB
testcase_18 AC 238 ms
46,252 KB
testcase_19 AC 230 ms
45,944 KB
testcase_20 AC 240 ms
46,308 KB
testcase_21 AC 229 ms
46,320 KB
testcase_22 AC 223 ms
46,728 KB
testcase_23 AC 235 ms
46,720 KB
testcase_24 AC 241 ms
46,188 KB
testcase_25 AC 231 ms
45,996 KB
testcase_26 AC 236 ms
46,152 KB
testcase_27 AC 236 ms
45,600 KB
testcase_28 AC 237 ms
46,708 KB
testcase_29 AC 230 ms
45,952 KB
testcase_30 AC 121 ms
41,056 KB
testcase_31 AC 125 ms
41,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

			long ans = a[0];
			for (int j = 1; j < n; j++) {
				ans = ans + a[j] + ans * a[j];
				ans %= mod;
			}
			System.out.println(ans);
		}
		sc.close();
	}
}
0