結果

提出番号 573
提出者 ecasdqina
言語 C++
提出日時 2017-07-25 23:37:37
問題名 (16)Hello World!
結果 AC
点数 100%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 AC 100% 1ms 8320KB

ソースコード

#include <iostream>
#include <algorithm>
#include <cstdlib>
using namespace std;
 
int main(){
	
	cout << "Hello World!" << endl;
	return 0;
}