| 提出番号 | 893 |
|---|---|
| 提出者 | enseignant |
| 言語 | C++ |
| 提出日時 | 2017-08-01 15:32:05 |
| 問題名 | (16)Hello World! |
| 結果 | AC |
| 点数 | 100% |
| テストケース | 結果 | 得点 | 実行時間 | メモリ使用量 |
|---|---|---|---|---|
| 1 | AC | 100% | 2ms | 7664KB |
#include <iostream>
#include <queue>
#include <vector>
#include <cmath>
#include <algorithm>
using namespace std;
using ll = long long;
const ll INF = 1e9;
int main() {
cout << "Hello World!" << endl;
return 0;
}