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