結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 15 ms
6,820 KB
testcase_06 AC 45 ms
10,216 KB
testcase_07 AC 22 ms
6,816 KB
testcase_08 AC 48 ms
10,892 KB
testcase_09 AC 33 ms
8,164 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