結果

問題 No.1081 和の和
ユーザー tentententen
提出日時 2020-08-19 11:15:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 2,779 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-10-12 03:36:32
合計ジャッジ時間 4,475 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,116 KB
testcase_01 AC 130 ms
41,252 KB
testcase_02 AC 130 ms
41,436 KB
testcase_03 AC 134 ms
41,024 KB
testcase_04 AC 139 ms
41,216 KB
testcase_05 AC 115 ms
39,884 KB
testcase_06 AC 138 ms
41,284 KB
testcase_07 AC 139 ms
41,116 KB
testcase_08 AC 140 ms
41,384 KB
testcase_09 AC 138 ms
41,288 KB
testcase_10 AC 141 ms
41,428 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 n = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        for (int i = 0; i < n - 1; i++) {
            for (int j = 0; j < n - 1 - i; j++) {
                arr[j] += arr[j + 1];
                arr[j] %= MOD;
            }
        }
        System.out.println(arr[0]);
    }
} 
0