結果

問題 No.492 IOI数列
ユーザー Nafmo2Nafmo2
提出日時 2017-03-11 16:39:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 694 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-06-24 12:30:52
合計ジャッジ時間 3,166 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 3
other AC * 1 TLE * 1 -- * 17
権限があれば一括ダウンロードができます

ソースコード

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";
 int main(){
     scanf("%lld",&N);
     EREP(i,N){
         if(i==1)continue;
         a = (a * 100 + 1) % MOD;
         b = (b * 100 + 1) % 11;
     }
     REP(i,b){
         if(i==0)continue;
         str += "01";
     }
     cout<<a<<endl<<str<<endl;

     return 0;

 }
0