結果

問題 No.492 IOI数列
ユーザー 👑 Nafmo2Nafmo2
提出日時 2017-04-05 22:11:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,035 bytes
コンパイル時間 594 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-22 20:25:45
合計ジャッジ時間 1,575 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<string>
#include<stack>
#include<queue>
#include<vector>
typedef long long int ll;
using namespace std;
#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define REP(i,n) for (int i=0;i<(n);i++)
#define EREP(i,n) for (int i=1;i<=(n);i++)
const int MOD = 1000000007;
const int INF = 1000000;
ll a=1,b=1,ans,M,temp;
ll A[5010], N;
string str="1";
ll dp[100000000];
ll powr(int x, int n){
    if(n == 0){
        return 1;
    }
    int res = powr((x*x)%1000000007, n / 2);
    if(n%2==1){
        res = res*x%1000000007;
    }
     return res;
}

// 100^n+(100^n-1)/99 1/99 (10^2i -1)
 int main(){
     scanf("%lld",&N);
     a=powr(100,N-1)%MOD+(powr(100,N-1)-1)*powr(99,(MOD-2))%MOD;
     a%=MOD;
     
     REP(i,N%11){
         if(N%11==0){str="0";break;}
         if(N%11==1){str="1";break;}
         if(i==1)continue;
         str += "01";
     }
        if(N%11==0){str="0";}
        if(N%11==1){str="1";}
     cout<<a<<endl<<str<<endl;

     return 0;

 }
0