結果

問題 No.793 うし数列 2
ユーザー noisy_noiminnoisy_noimin
提出日時 2019-02-22 22:08:58
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,296 bytes
コンパイル時間 616 ms
コンパイル使用メモリ 85,712 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-05-04 02:34:16
合計ジャッジ時間 4,092 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <climits>
#include <cassert>
#include <iostream>
#include <iomanip>
#include <string>
#include <stack>
#include <queue>
#include <vector>
#include <map>
#include <set>
#include <algorithm>
#include <numeric>
#include <bitset>

#define all(c) c.begin(), c.end()
#define rall(c) c.rbegin(), c.rend()
#define debug(x) cerr << #x << ": " << x << endl

using namespace std;

typedef long long ll;
typedef pair<ll, ll> Pll;
typedef pair<int, int> Pii;

const ll MOD = 1000000007;
const long double EPS = 1e-10;
const int dyx[4][2] = {
    { 0, 1}, {-1, 0}, {0,-1}, {1, 0}
};

ll modpow(ll a, ll t) {
    ll ret = 1LL;
    while(t) {
        if(t & 1) {
            ret *= a;
            ret %= MOD;
        }
        a *= a;
        a %= MOD;
        t >>= 1;
    }
    return ret;
}

ll solve(ll ei) {
    if(ei <= 8) {
        ll ret = 0LL;
        for(int i=1;i<=ei;++i) {
            ret = ret * 10 + 3;
        }
        return ret;
    }
    ll l = solve(ei/2);
    ll r = solve((ei+1)/2);
    return ((l*modpow(10LL, (ei+1)/2))%MOD+r) % MOD;
}

int main() {
    ll ei;
    cin >> ei;

    if(ei <= 8) {
        cout << '1' + string(ei, '3') + "\n";
    } else {
        cout << (modpow(10LL, ei) + solve(ei))%MOD << "\n";
    }


}
0