結果

問題 No.1336 Union on Blackboard
ユーザー ks2mks2m
提出日時 2021-01-15 21:35:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 1,821 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 47,284 KB
最終ジャッジ日時 2024-05-04 22:55:48
合計ジャッジ時間 9,589 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
39,672 KB
testcase_01 AC 195 ms
45,808 KB
testcase_02 AC 191 ms
46,000 KB
testcase_03 AC 206 ms
45,900 KB
testcase_04 AC 209 ms
45,820 KB
testcase_05 AC 202 ms
45,580 KB
testcase_06 AC 210 ms
46,860 KB
testcase_07 AC 200 ms
45,532 KB
testcase_08 AC 197 ms
45,536 KB
testcase_09 AC 208 ms
45,936 KB
testcase_10 AC 229 ms
47,260 KB
testcase_11 AC 235 ms
47,024 KB
testcase_12 AC 227 ms
47,076 KB
testcase_13 AC 227 ms
47,284 KB
testcase_14 AC 239 ms
47,112 KB
testcase_15 AC 217 ms
46,932 KB
testcase_16 AC 228 ms
47,224 KB
testcase_17 AC 231 ms
46,572 KB
testcase_18 AC 243 ms
46,928 KB
testcase_19 AC 226 ms
46,972 KB
testcase_20 AC 227 ms
47,164 KB
testcase_21 AC 229 ms
46,516 KB
testcase_22 AC 234 ms
46,924 KB
testcase_23 AC 233 ms
46,484 KB
testcase_24 AC 227 ms
46,404 KB
testcase_25 AC 233 ms
46,724 KB
testcase_26 AC 229 ms
46,528 KB
testcase_27 AC 230 ms
46,952 KB
testcase_28 AC 230 ms
47,216 KB
testcase_29 AC 230 ms
47,240 KB
testcase_30 AC 118 ms
41,324 KB
testcase_31 AC 125 ms
41,340 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