結果

問題 No.793 うし数列 2
ユーザー lightninglightning
提出日時 2019-03-20 08:56:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 786 bytes
コンパイル時間 1,516 ms
コンパイル使用メモリ 167,184 KB
実行使用メモリ 814,464 KB
最終ジャッジ日時 2024-09-16 07:03:44
合計ジャッジ時間 3,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 7 ms
5,376 KB
testcase_06 AC 20 ms
7,040 KB
testcase_07 AC 10 ms
5,376 KB
testcase_08 AC 20 ms
7,424 KB
testcase_09 AC 14 ms
6,016 KB
testcase_10 MLE -
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 "bits/stdc++.h"
#define Rep(i,n) for(int i=0;i<n;i++)
#define For(i,n1,n2) for(int i=n1;i<n2;i++)
#define REP(i,n) for(ll i=0;i<n;i++)
#define FOR(i,n1,n2) for(ll i=n1;i<n2;i++)
#define put(a) cout<<a<<endl;
#define all(a)  (a).begin(),(a).end()
#define SORT(c) sort((c).begin(),(c).end())
#define TDARRAY(int,a,n,m) vector<vector<int>> a(n,vector<int>(m,0));
using namespace std;
typedef long long ll;
typedef pair<int, int> P;
template<class T> inline bool chmax(T& a, T b) {if(a<b){a=b;return 1;}return 0;}
template<class T> inline bool chmin(T& a, T b) {if(a>b){a=b;return 1;}return 0;}

int n;
ll MOD = 1e9+7;
ll rec(int n,ll sum=1){
    if(n==0){
        return sum;
    }
    return (rec(n-1,sum)*10+3)%MOD;
}

int main(){
    cin >> n;
    put(rec(n));
    return 0;
}
0