結果
| 問題 | 
                            No.796 well known
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2019-03-15 21:31:37 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 4 ms / 2,000 ms | 
| コード長 | 692 bytes | 
| コンパイル時間 | 1,284 ms | 
| コンパイル使用メモリ | 158,168 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-07-01 20:28:30 | 
| 合計ジャッジ時間 | 2,247 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 15 | 
ソースコード
#include <bits/stdc++.h>
#include <unordered_set>
using namespace std;
#define ll long long
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define repeat(i,s,n) for(int (i)=s; (i)<(n); (i)++)
#define revrep(i,n) for(int (i)=(n)-1;i>=0; i--)
int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout<<setprecision(std::numeric_limits<float>::max_digits10);
  int n;
  cin>>n;
  if(n%3==0) {
    cout << "3 3";
    rep(i,n-2){
      cout << " 1";
    }
    cout << endl;
  }
  if(n%3==1) {
    cout << "3 3 3";
    rep(i,n-3) {
      cout << " 1";
    }
    cout << endl;
  }
  if(n%3==2) {
    cout << "3";
    rep(i,n-1) {
      cout << " 1";
    }
    cout << endl;
  }
  return 0;
}