結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 1 ms
8,320 KB
testcase_04 AC 1 ms
10,496 KB
testcase_05 AC 2 ms
8,320 KB
testcase_06 AC 5 ms
13,696 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 5 ms
10,496 KB
testcase_09 AC 5 ms
8,448 KB
testcase_10 TLE -
testcase_11 TLE -
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 <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