結果
| 問題 | 
                            No.83 最大マッチング
                             | 
                    
| コンテスト | |
| ユーザー | 
                             hamray
                         | 
                    
| 提出日時 | 2017-11-23 12:27:57 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 484 bytes | 
| コンパイル時間 | 1,249 ms | 
| コンパイル使用メモリ | 158,440 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-11-27 05:23:28 | 
| 合計ジャッジ時間 | 1,764 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 10 | 
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){  
    int N; cin >> N;
    string S = "";
    if(N % 2 == 0){
        while(true){
            if(N >= 1){
                S += "1"; N -= 2;
            }
           if(N / 2 <= 0) break;
        }
    }else{
        S += "7"; N -= 3;
        while(true){
            if(N / 2 <= 0) break;
        
            if(N >= 1){
                S += "1"; N -= 2;
            }
        }  
    }
    cout << S << endl;
    return 0;
}
            
            
            
        
            
hamray