結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | IBRAHIM TIMITE |
提出日時 | 2022-07-05 16:57:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,208 bytes |
コンパイル時間 | 803 ms |
コンパイル使用メモリ | 94,856 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 11:34:44 |
合計ジャッジ時間 | 1,231 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <map> #include <numeric> #include <set> #include <queue> #include <random> #include <assert.h> #include <math.h> #include <time.h> #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define make_unique(x) sort(all((x))); (x).resize(unique(all((x))) - (x).begin()) typedef long long ll; template<typename T> void show(const T &v){ if (v.empty()) return; for (auto it : v) std::cout << it << " "; std::cout << "\n"; } template<typename T> void read(std::vector<T> &a) { for (T &it : a) { std::cin >> it; } } template<typename T> void show_pairs (const T &a) { for (auto it : a) { std::cout << it.first << " " << it.second << "\n"; } } template<typename T> void read(T &n) { std::cin >> n; } template<typename T> void send(T &ans) { std::cout << ans << "\n"; } void solve() { std::string s; std::cin >> s; std::cout << "Hello World!\n"; return; } int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int t = 1; // std::cin >> t; while(t--) { solve(); } return 0; }