結果
| 問題 |
No.796 well known
|
| コンテスト | |
| ユーザー |
a
|
| 提出日時 | 2019-03-15 22:01:34 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 10 ms / 2,000 ms |
| コード長 | 472 bytes |
| コンパイル時間 | 1,527 ms |
| コンパイル使用メモリ | 168,696 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-01 20:56:59 |
| 合計ジャッジ時間 | 2,532 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
void solve()
{
int N;
cin >> N;
vector<int> ans;
ans.push_back(3);
N--;
if (N % 3 == 0)
{
ans.push_back(2);
N--;
}
else if (N % 3 == 2)
{
ans.push_back(2);
ans.push_back(2);
N -= 2;
}
for (int i = 0; i < N; i++)
{
ans.push_back(1);
}
for (int i = 0; i < ans.size(); i++)
{
cout << ans[i] << ' ';
}
cout << endl;
}
int main(void)
{
solve();
//cout << "yui(*-v・)yui" << endl;
return 0;
}
a