結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
ty70
|
| 提出日時 | 2016-10-28 15:15:45 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 5,000 ms |
| コード長 | 525 bytes |
| コンパイル時間 | 1,646 ms |
| コンパイル使用メモリ | 157,376 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-24 05:10:31 |
| 合計ジャッジ時間 | 2,059 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#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 == 0){
rep (i, N/2) cout << 1;
cout << endl;
}else{
cout << 7;
for (int i = 1; i < (N-1)/2; ++i) cout << 1;
cout << endl;
} // end if
return 0;
}
ty70