| 提出番号 | 766 |
|---|---|
| 提出者 | ukohank517 |
| 言語 | C++ |
| 提出日時 | 2017-08-01 14:32:29 |
| 問題名 | (16)Hello World! |
| 結果 | AC |
| 点数 | 100% |
| テストケース | 結果 | 得点 | 実行時間 | メモリ使用量 |
|---|---|---|---|---|
| 1 | AC | 100% | 1ms | 8320KB |
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
#define MOD 1000000007
#define ll long long
using namespace std;
int main(){
cin.tie(0);
ios::sync_with_stdio(false);
cout << "Hello World!" << endl;
return 0;
}