結果

問題 No.9000 Hello World! (テスト用)
ユーザー gabriel55_gabriel55_
提出日時 2022-01-03 19:46:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 2,399 bytes
コンパイル時間 4,853 ms
コンパイル使用メモリ 254,688 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-21 08:39:56
合計ジャッジ時間 4,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#if !__INCLUDE_LEVEL__
#include __FILE__

auto solve() {
    print("Hello World!");
}

signed main(void) {
   solve();
   return 0;
}

/*---------------------------------------------------------------------------------------------------
      ○______
       ||      |
       ||   ●   |
       ||      |
        || ̄ ̄ ̄ ̄ ̄
       ||  君が代は
   ∧__,,∧||  千代に八千代に
  ( `・ω・||    さざれ石の巌となりて
   ヽ  つ0     こけのむすまで
   し―-J
---------------------------------------------------------------------------------------------------*/

#else
#include <bits/stdc++.h>
using namespace std;
#pragma region a
#include <atcoder/all>
using namespace atcoder;
#pragma region b
typedef long long ll;
typedef long double ldb;
#define endl '\n'
#define fi first
#define se second
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()
#define sz(a) (ll)((a).size())
#define overload(a, b, c, d, e, ...) e
#define rep1(a) for (ll i = 0; i < ll(a); ++i)
#define rep2(i,a) for (ll i = 0; i < ll(a); ++i)
#define rep3(i,a,b) for (ll i = a; i < ll(b); ++i)
#define rep4(i,a,b,c) for (ll i = a; i < ll(b); i+=c)
#define rep(...) overload(__VA_ARGS__, rep4, rep3, rep2, rep1) (__VA_ARGS__)
#define REP(i,a) for (ll i = 0, __n##a = (a); i < __n##a; ++i)
template<class... T> void input(T&... a) { (cin >> ... >> a); }
void print() { cout << '\n'; }
template<class T, class... Ts> void print(const T& a, const Ts&... b) { cout << a; (cout << ... << (cout << ' ', b)); cout << '\n'; }
template <class T> bool chmin(T& a, const T& b) { return a > b ? a = b, true : false; }
template <class T> bool chmax(T& a, const T& b) { return a < b ? a = b, true : false; }
struct in { ll a; in() {} in(ll b) : a(b){}; template <class T> operator T() { T c; cin >> c; return c; } template <class T> operator vector<T>() { vector<T> c(a); for (ll i = 0; i < a; i++) cin >> c[i]; return c; }};
#ifdef _DEBUG
#include <debug.hpp>
#define debug(...) debug::dprint(#__VA_ARGS__, __VA_ARGS__)
#else
#define debug(...) (static_cast<void>(0))
#endif
#pragma endregion b
struct initialise { initialise() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; }__INI__;
const ll inf = 1LL << 60;
const ll mod = 1e9 + 7;
#endif
#pragma endregion a
0