結果

問題 No.1336 Union on Blackboard
ユーザー tentententen
提出日時 2021-01-18 09:37:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 46,960 KB
最終ジャッジ日時 2024-05-07 23:31:58
合計ジャッジ時間 11,579 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,136 KB
testcase_01 AC 220 ms
45,564 KB
testcase_02 AC 222 ms
45,300 KB
testcase_03 AC 206 ms
45,528 KB
testcase_04 AC 205 ms
45,424 KB
testcase_05 AC 211 ms
45,524 KB
testcase_06 AC 222 ms
45,652 KB
testcase_07 AC 218 ms
45,188 KB
testcase_08 AC 214 ms
45,488 KB
testcase_09 AC 216 ms
45,644 KB
testcase_10 AC 247 ms
46,392 KB
testcase_11 AC 248 ms
46,488 KB
testcase_12 AC 246 ms
45,960 KB
testcase_13 AC 252 ms
46,068 KB
testcase_14 AC 243 ms
46,284 KB
testcase_15 AC 252 ms
46,252 KB
testcase_16 AC 247 ms
46,236 KB
testcase_17 AC 246 ms
46,000 KB
testcase_18 AC 246 ms
46,120 KB
testcase_19 AC 241 ms
46,416 KB
testcase_20 AC 259 ms
46,068 KB
testcase_21 AC 257 ms
46,088 KB
testcase_22 AC 258 ms
46,232 KB
testcase_23 AC 248 ms
46,472 KB
testcase_24 AC 253 ms
46,960 KB
testcase_25 AC 246 ms
46,140 KB
testcase_26 AC 250 ms
46,312 KB
testcase_27 AC 249 ms
45,908 KB
testcase_28 AC 247 ms
46,284 KB
testcase_29 AC 248 ms
46,188 KB
testcase_30 AC 132 ms
41,360 KB
testcase_31 AC 138 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < t; i++) {
		    int n = sc.nextInt();
		    long ans = 1;
		    for (int j = 0; j < n; j++) {
		        ans *= sc.nextInt() + 1;
		        ans %= MOD;
		    }
		    ans--;
		    ans += MOD;
		    ans %= MOD;
		    sb.append(ans).append("\n");
		}
		System.out.print(sb);
	}
}
0