結果
| 問題 | 
                            No.796 well known
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2019-03-15 23:39:45 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 4 ms / 2,000 ms | 
| コード長 | 357 bytes | 
| コンパイル時間 | 440 ms | 
| コンパイル使用メモリ | 54,944 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-07-01 22:06:52 | 
| 合計ジャッジ時間 | 1,459 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 15 | 
ソースコード
#include <iostream>
#define REP(i, n) for(int i = 0; i < (int)(n); i++)
#define printn(x) cout << x;
#define print(x) cout << x << endl;
using namespace std;
int main(void){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N;
    
    cin >> N;
    
    printn("1");
    REP(i, N-1){
        printn(" 3");
    }
    
    print("");
    return 0;
}