| 提出番号 | 1092 |
|---|---|
| 提出者 | lglover |
| 言語 | C++ |
| 提出日時 | 2018-01-07 00:47:03 |
| 問題名 | (16)Hello World! |
| 結果 | AC |
| 点数 | 100% |
| テストケース | 結果 | 得点 | 実行時間 | メモリ使用量 |
|---|---|---|---|---|
| 1 | AC | 100% | 2ms | 7888KB |
#include <iostream>
#include <string>
#include <algorithm>
#include <map>
#include <math.h>
#include <iomanip>
#include <vector>
#include <queue>
#include <functional>
#include <random>
#include <time.h>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
int main() {
cout << "Hello World!" << endl;
return 0;
}