結果

問題 No.9000 Hello World! (テスト用)
ユーザー Rirnon
提出日時 2025-09-01 21:44:20
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 772 bytes
コンパイル時間 4,281 ms
コンパイル使用メモリ 251,544 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-09-01 21:44:25
合計ジャッジ時間 4,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#include "atcoder/all"
#include "iomanip"
#include "algorithm"
#include "vector"
#include "math.h"
#include "bitset"
#include "random"
#include "set"
using namespace std;
using namespace atcoder;
#define rep(i, a, b) for(int i = a; i < (int)(b); i++)
#define rrep(i, a, b) for(int i = a; i >= (int)(b); i--)
#define vec vector
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define pub push_back
#define pob pop_back
#define prec setprecision
#define ll long long
#define ull unsigned long long
#define maxE *max_element
#define minE *min_element
#define p_queue priority_queue
using Graph = vec<vec<int>>;
using Pi = pair<ll,ll>;
const ll INF = 9E+18;

int main() {
	string S; cin >> S;
	cout << "Hello World!" << endl;
}
0