結果
| 問題 |
No.9000 Hello World! (テスト用)
|
| ユーザー |
|
| 提出日時 | 2023-04-27 20:22:18 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 2,091 bytes |
| コンパイル時間 | 3,519 ms |
| コンパイル使用メモリ | 250,344 KB |
| 最終ジャッジ日時 | 2025-02-12 14:27:33 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
// using mint = modint998244353;
// using mint = modint1000000007;
// using mint = modint;
#endif
using namespace std;
using ll = long long;
constexpr char nl = '\n';
constexpr long long INF64 = 9223372036854775807;
constexpr double PI = 3.14159265358979;
#define rep(i, a, n) for(long long i = (long long)(a); i < (long long)(n); ++i)
#define rrep(i, n, a) for(long long i = (long long)(n) - 1; (long long)(a) <= i; --i)
#define all(a) std::begin(a), std::end(a)
#define rall(a) std::rbegin(a), std::rend(a)
#define Sort(a) sort(std::begin(a), std::end(a))
#define rsort(a) sort(std::rbegin(a), std::rend(a))
#ifdef LOCAL
#include <my_debug_print.hpp>
#define debug(...) print_normal_for_debug(#__VA_ARGS__, __VA_ARGS__)
#define debug_rank(...) print_format_for_debug(#__VA_ARGS__, __VA_ARGS__)
#define debug_println(...) debug_println(__VA_ARGS__)
#define debug_print(...) debug_print(__VA_ARGS__)
#else
#define debug(...) (static_cast<void>(0))
#define debug_rank(...) (static_cast<void>(0))
#define debug_println(...) (static_cast<void>(0))
#define debug_print(...) (static_cast<void>(0))
#endif
template <typename T>
void print(const T &arg) {
std::cout << arg;
}
template <typename T, typename... U>
void print(const T &arg, const U&... args) {
std::cout << arg;
print(args...);
}
long long solve1() {
// long long N;
// cin >> N;
// debug(N);
print("Hello World!", nl);
return 0LL;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
std::cout << std::fixed << std::setprecision(15);
{
long long times = 1LL;
for (long long _index = 1LL; _index <= times; ++_index) {
debug_println("--------------------------------", _index, "---------------------------------", '\n');
solve1();
debug_println("------------------------------------------------------------------", '\n');
}
}
return 0;
}