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