結果

問題 No.1376 Simple LPS Problem
ユーザー auauaauaua
提出日時 2021-02-05 23:16:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 1,334 bytes
コンパイル時間 1,531 ms
コンパイル使用メモリ 165,264 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-15 10:48:02
合計ジャッジ時間 4,642 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,500 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 1 ms
4,380 KB
testcase_28 AC 1 ms
4,380 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 1 ms
4,376 KB
testcase_31 AC 2 ms
4,376 KB
testcase_32 AC 1 ms
4,380 KB
testcase_33 AC 2 ms
4,380 KB
testcase_34 AC 2 ms
4,380 KB
testcase_35 AC 1 ms
4,380 KB
testcase_36 AC 2 ms
4,380 KB
testcase_37 AC 1 ms
4,380 KB
testcase_38 AC 1 ms
4,376 KB
testcase_39 AC 1 ms
4,376 KB
testcase_40 AC 1 ms
4,376 KB
testcase_41 AC 3 ms
4,376 KB
testcase_42 AC 4 ms
4,380 KB
testcase_43 AC 7 ms
4,380 KB
testcase_44 AC 2 ms
4,376 KB
testcase_45 AC 2 ms
4,376 KB
testcase_46 AC 4 ms
4,376 KB
testcase_47 AC 4 ms
4,376 KB
testcase_48 AC 4 ms
4,380 KB
testcase_49 AC 2 ms
4,380 KB
testcase_50 AC 2 ms
4,376 KB
testcase_51 AC 6 ms
4,376 KB
testcase_52 AC 2 ms
4,380 KB
testcase_53 AC 4 ms
4,380 KB
testcase_54 AC 3 ms
4,380 KB
testcase_55 AC 3 ms
4,376 KB
testcase_56 AC 2 ms
4,376 KB
testcase_57 AC 2 ms
4,376 KB
testcase_58 AC 4 ms
4,380 KB
testcase_59 AC 5 ms
4,376 KB
testcase_60 AC 3 ms
4,376 KB
testcase_61 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
//#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
#define vec vector<ll>
#define mat vector<vector<ll> >
#define fi first
#define se second
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pll;
typedef long double ld;
typedef complex<double> Complex;
const ll INF=1e9+7;
const ll inf=INF*INF;
const ll mod=998244353;
const ll MAX=140010;



signed main(){
    ll n,k;cin>>n>>k;
    string s="";
    ll now=0;
    while(s.size()<n){
        if(now==0){
            s+="00";
        }else if(now==1){
            s+="1";
        }else if(now==2){
            s+="0";
        }else{
            s+="11";
        }
        now++;
        now%=4;
    }
    if(k>=4){
        rep(i,k)cout<<1;
        rep(l,n-k)cout<<s[l];
        cout<<endl;
        return 0;
    }
    if(k==3&&n>=7){
        if(n==7){
            cout<<1110100<<endl;
        }else if(n==8){
            cout<<11101000<<endl;
        }else{
            cout<<-1<<endl;
        }
        return 0;
    }
    if(k*2<n)cout<<-1<<endl;
    else{
        rep(i,k)cout<<1;
        rep(i,n-k)cout<<0;
        cout<<endl;
    }
}
0