結果

問題 No.492 IOI数列
コンテスト
ユーザー Nafmo2
提出日時 2017-03-11 16:39:59
言語 C++14
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
TLE  
実行時間 -
コード長 694 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 669 ms
コンパイル使用メモリ 94,016 KB
実行使用メモリ 24,000 KB
最終ジャッジ日時 2026-03-10 15:43:10
合計ジャッジ時間 61,399 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10 TLE * 9
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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