結果

問題 No.83 最大マッチング
ユーザー なおなお
提出日時 2014-12-02 23:26:20
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 5 ms / 5,000 ms
コード長 370 bytes
コンパイル時間 1,290 ms
コンパイル使用メモリ 158,324 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 07:42:32
合計ジャッジ時間 1,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i, n)           for(int(i)=0;(i)<(n);++(i))
#define REPEAT(i, k, n)     for(int(i)=(k);(i)<((k)+(n));++(i))

int main(){
    int N;
    cin >> N;

    if(N%2==1){
        cout << 7; N-=3;
    }
    REP(i,N/2){
        cout << 1;
    }
    cout << endl;

    return 0;
}
0