結果

問題 No.793 うし数列 2
ユーザー dsytk7dsytk7
提出日時 2019-02-22 21:59:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 495 bytes
コンパイル時間 1,549 ms
コンパイル使用メモリ 165,524 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-25 08:21:02
合計ジャッジ時間 35,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
9,892 KB
testcase_02 AC 2 ms
10,016 KB
testcase_03 AC 2 ms
10,144 KB
testcase_04 AC 2 ms
10,144 KB
testcase_05 AC 10 ms
10,144 KB
testcase_06 AC 31 ms
13,640 KB
testcase_07 AC 16 ms
9,892 KB
testcase_08 AC 32 ms
13,636 KB
testcase_09 AC 22 ms
10,144 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int (i)=(0);(i)<(int)(n);++(i))
using ll = long long;
using P = pair<ll, ll>;
using namespace std;

template<class T> void vin(vector<T>& v, int n) {
    v.resize(n);
    for (int i = 0; i < n; ++i) {
        cin >> v[i];
    }
}

ll mod = 1e9+7;

int main() {
    ll N;
    cin >> N;
    N %= mod;
    ll ans = 13;
    rep(i, N-1) {
        ans = (ans * 10LL % mod) + 3LL;
        ans %= mod;
    }
    cout << ans << endl;
}
0