結果

問題 No.1114 足し算盆に返らず
ユーザー fastmath
提出日時 2020-07-18 06:37:49
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 1,911 ms
コンパイル使用メモリ 195,432 KB
最終ジャッジ日時 2025-01-12 00:02:29
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ii pair <int, int>
#define app push_back
#define all(a) a.begin(), a.end()
#define bp __builtin_popcountll
#define ll long long
#define mp make_pair
#define f first
#define s second
#define Time (double)clock()/CLOCKS_PER_SEC
#define debug(x) std::cout << #x << ": " << x << '\n';
signed main() {
    int n;
    cin >> n;
    vector <int> ans;
    for (int i = n; i * 2 > n; --i)
        ans.app(i);

    for (int i = 0; i + 1 < ans.size(); ++i)
        cout << ans[i] << ' ';
    cout << ans.back() << endl;
}
0