結果

問題 No.492 IOI数列
ユーザー 👑 Nafmo2Nafmo2
提出日時 2017-03-11 16:39:59
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 694 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 73,524 KB
実行使用メモリ 8,756 KB
最終ジャッジ日時 2023-09-06 18:06:34
合計ジャッジ時間 3,002 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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