結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
cakecatz
|
| 提出日時 | 2019-12-15 06:01:45 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 277 bytes |
| コンパイル時間 | 1,443 ms |
| コンパイル使用メモリ | 165,836 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-28 14:50:50 |
| 合計ジャッジ時間 | 2,046 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s = "";
int n;
cin >> n;
if (n % 2 == 1) {
n -= 3;
s += '7';
}
int x = n / 2;
for (int i = 0; i < x; i++) {
s += '1';
}
cout << s;
return 0;
}
cakecatz