結果

問題 No.2247 01 ZigZag
ユーザー ransewhaleransewhale
提出日時 2023-03-20 00:17:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 997 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 77,676 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-18 17:56:31
合計ジャッジ時間 2,756 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <iostream>
#include <vector>
#include <queue>
#include <stack>
#include <algorithm>

#pragma GCC optimize("O2")

using ll = long long int;
const int INF = (1<<30);
const ll INFLL = (1ll<<60);
const ll MOD = (ll)(1e9+7);

#define l_ength size

void mul_mod(ll& a, ll b){
	a *= b;
	a %= MOD;
}

void add_mod(ll& a, ll b){
	a = (a<MOD)?a:(a-MOD);
	b = (b<MOD)?b:(b-MOD);
	a += b;
	a = (a<MOD)?a:(a-MOD);
}

int main(void){
	int n,m,k,a,b,i;
	std::cin >> n >> m >> k; ++k;
	a = (k+1)/2; b = k/2;
	if(n >= a && m >= b){
		n -= a; m -= b;
		for(i=0; i<n; ++i){
			std::cout << 0;
		}
		for(i=0; i<k; ++i){
			std::cout << (i%2);
		}
		for(i=0; i<m; ++i){
			std::cout << 1;
		}
		std::cout << std::endl;
	}else if(n >= b && m >= a){
		n -= b; m -= a;
		for(i=0; i<n; ++i){
			std::cout << 0;
		}
		for(i=1; i<=k; ++i){
			std::cout << (k%2);
		}
		for(i=0; i<m; ++i){
			std::cout << 1;
		}
		std::cout << std::endl;
	}else{
		std::cout << "-1" << std::endl;
	}
	return 0;
}
0