結果
| 問題 | 
                            No.83 最大マッチング
                             | 
                    
| コンテスト | |
| ユーザー | 
                             kyo1
                         | 
                    
| 提出日時 | 2020-04-29 01:37:22 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 3 ms / 5,000 ms | 
| コード長 | 351 bytes | 
| コンパイル時間 | 1,522 ms | 
| コンパイル使用メモリ | 168,644 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-11-26 09:03:33 | 
| 合計ジャッジ時間 | 2,093 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 10 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
// 2: 1
// 3: 7
int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int N;
  cin >> N;
  string res = "";
  for (int i = 0; i < N / 2; i++) {
    res += '1';
  }
  if (N % 2 == 1) {
    res.pop_back();
    res += '7';
  }
  reverse(res.begin(), res.end());
  cout << res << '\n';
  return 0;
}
            
            
            
        
            
kyo1