結果

問題 No.1114 足し算盆に返らず
ユーザー kpinkcatkpinkcat
提出日時 2023-08-27 00:34:22
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 867 ms
コンパイル使用メモリ 102,636 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 04:48:32
合計ジャッジ時間 16,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
using namespace std;


int main()
{
    int n;
    string delim = "";
    cin >> n;
    for (int i = 1; i <= n; i += 2){
        cout << delim << i;
        delim = " ";
    }
    cout << endl;
}
0