結果

問題 No.793 うし数列 2
ユーザー yapooyapoo
提出日時 2019-02-22 21:53:40
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 446 bytes
コンパイル時間 1,533 ms
コンパイル使用メモリ 159,596 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-04 01:59:22
合計ジャッジ時間 3,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 15 ms
5,376 KB
testcase_06 AC 46 ms
10,368 KB
testcase_07 AC 22 ms
6,528 KB
testcase_08 AC 49 ms
10,752 KB
testcase_09 AC 32 ms
8,192 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int mod = 1e9+7;

int main(){
    int N;  cin >> N;

    vector<ll> val(N+1,0);
    val[0] = 1;
    for(int i=1; i<=N; i++){
        val[0] = (val[0]*10)%mod;
    }
    val[1] = 3;
    for(int i=2; i<=N; i++){
        val[i] = (val[i-1]*10)%mod;
    }

    ll ans = 0;
    for(int i=0; i<=N; i++){
        ans += val[i];
        ans = ans%mod;
    }
    cout << ans << endl;
}
0