結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | Jeremy Bouin |
提出日時 | 2019-06-23 20:53:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,037 bytes |
コンパイル時間 | 1,862 ms |
コンパイル使用メモリ | 157,536 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-08 15:31:18 |
合計ジャッジ時間 | 2,424 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,a,b) for(int i = (a); i <= (b); i++) #define rng(a) a.begin(), a.end() #define sz(x) (int)(x).size() #define se second #define fi first #define prev :oyhhhhhhyo: #define next .sdNNNmNNNNNNNmds. #define y0 -hNNNNy`yNNNNNN`/Nh- #define y1 mNNNNNd+dNNNNNN+sNNm #define yn mNNNNNNNNy--:smNNNms #define tm .+oooooosyysooooo+- #define read :yhy/ #define rank :mNmo #define index ... #define pb push_back #define pcnt __builtin_popcountll #define rrep(i,a,b) for(int i = (b); i >= (a); i--) #ifdef LOCAL #define rall(x,a) for(x : a) #define LL "%lld" #else #define rall(x,a) for(auto x : a) #define LL "%I64d" #endif #define PI 3.14159265358979323846 #define MOD 1000000007 #define endl "\n" typedef long long ll; using namespace std; signed main() { ios_base::sync_with_stdio(false); cin.tie(0); string s; cin >> s; cout << "Hello World!" << endl; return 0; }