結果

問題 No.9000 Hello World! (テスト用)
ユーザー さがかんすけ
提出日時 2025-10-19 22:11:06
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 3,690 ms
コンパイル使用メモリ 251,444 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-10-19 22:11:11
合計ジャッジ時間 4,494 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll = long long;
#define rep(i , n) for(int i=0; i< (int)(n); i++)
#define int long long
const ll INF = 1e18;
const int inf = 1e9;
int32_t main(){
	cout << "Hello World!" << endl;
}
0