結果

問題 No.796 well known
ユーザー parsee1053
提出日時 2020-08-22 16:25:27
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 1,439 ms
コンパイル使用メモリ 71,524 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 10:27:01
合計ジャッジ時間 2,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <deque>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>

using namespace std;

typedef long long ll;

#define MOD 1000000007

int main() {
  int n;
  cin >> n;
  cout << 1;
  for (int i = 1; i < n; ++i) {
    cout << " " << 3;
  }
  cout << "\n";
  return 0;
}
0