結果

問題 No.83 最大マッチング
ユーザー ooooobaoooooba
提出日時 2021-01-11 13:32:06
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 5 ms / 5,000 ms
コード長 359 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 74,184 KB
最終ジャッジ日時 2025-01-17 16:08:17
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <cstdio>
#include <iostream>
#include <numeric>
#include <optional>
#include <vector>

using namespace std;

int main() {
    int32_t n;
    cin >> n;
    if (n % 2 == 1) {
        cout << 7;
        n -= 3;
    }
    for (auto i = 0; i < n / 2; ++i) {
        cout << 1;
    }
    cout << endl;
    return 0;
}
0