結果
| 問題 |
No.9000 Hello World! (テスト用)
|
| ユーザー |
|
| 提出日時 | 2022-07-05 16:57:52 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 1,208 bytes |
| コンパイル時間 | 868 ms |
| コンパイル使用メモリ | 95,464 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-16 00:04:55 |
| 合計ジャッジ時間 | 1,270 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
#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;
}