| 提出番号 | 756 |
|---|---|
| 提出者 | littlegirl112 |
| 言語 | C++ |
| 提出日時 | 2017-08-01 14:31:14 |
| 問題名 | (16)Hello World! |
| 結果 | AC |
| 点数 | 100% |
| テストケース | 結果 | 得点 | 実行時間 | メモリ使用量 |
|---|---|---|---|---|
| 1 | AC | 100% | 1ms | 8240KB |
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main() {
cout << "Hello World!" << endl;
}