結果

問題 No.9000 Hello World! (テスト用)
ユーザー UnbakedbreadUnbakedbread
提出日時 2024-09-03 21:02:39
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 335 bytes
コンパイル時間 5,972 ms
コンパイル使用メモリ 335,596 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-03 21:02:46
合計ジャッジ時間 6,743 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using ll=long long;
using vi=vector<int>;
using vvi=vector<vi>;
using vs=vector<string>;

#define all(s) s.begin(),s.end()
#define rall(s) s.rbegin(),s.rend()

const double PI=3.141592653589793;


int main(){
  cout<<"Hello World!"<<endl;
}
0