結果

問題 No.83 最大マッチング
ユーザー ty70
提出日時 2016-10-28 15:07:45
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 508 bytes
コンパイル時間 1,649 ms
コンパイル使用メモリ 157,416 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-24 05:10:26
合計ジャッジ時間 1,603 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 4 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);++i)
#define ALL(A) A.begin(), A.end()

using namespace std;

typedef long long ll;
typedef pair<int, int> P;

// 各数における、使うマッチの本数
const int matching[10] = { 6, 2, 5, 5, 4, 5, 6, 3, 7, 6 };

int main()
{
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	int N; cin >> N;
	if (N == 2){
		cout << 1 << endl;
	}else
	if (N == 3){
		cout << 7 << endl;
	}else{
		rep (i, N/2) cout << 1;
		cout << endl;
	} // end if

	return 0;
}
0