結果

問題 No.9000 Hello World! (テスト用)
ユーザー Y.TatsutaY.Tatsuta
提出日時 2024-06-20 16:03:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 870 bytes
コンパイル時間 1,182 ms
コンパイル使用メモリ 103,380 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-20 16:03:33
合計ジャッジ時間 2,167 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#ifndef INCLUDED_MAIN
#define INCLUDED_MAIN

#include __FILE__

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

#else

#include <iostream>
#include <vector>
#include <string>
#include <deque>
#include <list>
#include <map>
#include <set>
#include <unordered_set>
#include <unordered_map>
#include <queue>
#include <stack>
#include <algorithm>
#include <functional>
#include <utility>
#include <tuple>
#include <cmath>
#include <limits>
#include <numeric>
#include <iomanip>
#include <sstream>
#include <fstream>

using namespace std;
using ll = long long;
#define rep(i,n) for(ll i=0; i<(n); i++)
#define reps(i,s,n) for(ll i=(s); i<(n); i++)
#define all(x) (x).begin(),(x).end()
#define lb_ind(a,key) lower_bound(all((a)), (key)) - (a).begin()
#define llvec(a,n) vector<ll> (a)((n))
#define yn(flg) cout<<(flg?"Yes":"No")<<endl;

#endif
0