結果
| 問題 |
No.1114 足し算盆に返らず
|
| コンテスト | |
| ユーザー |
keijak
|
| 提出日時 | 2020-07-17 21:31:39 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 8 ms / 2,000 ms |
| コード長 | 915 bytes |
| コンパイル時間 | 2,963 ms |
| コンパイル使用メモリ | 191,176 KB |
| 最終ジャッジ日時 | 2025-01-11 22:15:53 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 26 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
using u64 = unsigned long long;
#define REP(i, n) for (int i = 0; (i64)(i) < (i64)(n); ++i)
#ifdef ENABLE_DEBUG
template <typename T>
void debug(T value) {
cerr << value;
}
template <typename T, typename... Ts>
void debug(T value, Ts... args) {
cerr << value << ", ";
debug(args...);
}
#define DEBUG(...) \
do { \
cerr << " \033[33m (L" << __LINE__ << ") "; \
cerr << #__VA_ARGS__ << ":\033[0m "; \
debug(__VA_ARGS__); \
cerr << endl; \
} while (0)
#else
#define debug(...)
#define DEBUG(...)
#endif
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
for (int i = n; i > n / 2; --i) {
if (i != n) cout << " ";
cout << i;
}
cout << endl;
}
keijak