結果

問題 No.2247 01 ZigZag
ユーザー hiro71687khiro71687k
提出日時 2023-03-18 15:02:49
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,111 bytes
コンパイル時間 4,286 ms
コンパイル使用メモリ 262,244 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-18 13:18:26
合計ジャッジ時間 5,742 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=1444440099999944;
ll mod=1000000007;
int main(){
    ll n,m,k;
    cin >> n >> m >> k;
    if (min(n,m)<k)
    {
        cout << -1 << endl;
        return 0;
    }
    if (n==0)
    {
        string s;
        for (ll i = 0; i < m; i++)
        {
            s.push_back('1');
        }
        cout << s << endl;
        return 0;
    }else if (m==0)
    {
        string s;
        for (ll i = 0; i < n; i++)
        {
            s.push_back('0');
        }
        cout << s << endl;
        return 0;
    }
    ll z=0,o=1;
    string s="1";
    for (ll i = 0; i < k; i++)
    {
        if (s[i]=='1')
        {
            s.push_back('0');
            z+=1;
        }else{
            s.push_back('1');
            o+=1;
        }
    }
    for (ll i = 0; i < n-z; i++)
    {
        s.push_back('0');
    }
    reverse(s.begin(),s.end());
    for (ll i = 0; i < m-o; i++)
    {
        s.push_back('1');
    }
    cout << s << endl;
}
0