結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
srup٩(๑`н´๑)۶
|
| 提出日時 | 2016-10-22 22:36:05 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 5,000 ms |
| コード長 | 423 bytes |
| コンパイル時間 | 442 ms |
| コンパイル使用メモリ | 61,496 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-23 17:43:21 |
| 合計ジャッジ時間 | 1,010 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#include <iostream>
#include <queue>
#include <vector>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<(n);i++)
const int INF = 1e9;
int main(void){
int n; cin >> n;
if(n % 2 == 1){
printf("7");
n -= 3;
rep(i, n / 2){
printf("1");
}
printf("\n");
}else{
rep(i, n / 2){
printf("1");
}
printf("\n");
}
return 0;
}
srup٩(๑`н´๑)۶