結果

問題 No.9000 Hello World! (テスト用)
ユーザー Keitaro Naruse
提出日時 2023-11-27 17:28:15
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 145 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 67,772 KB
最終ジャッジ日時 2025-02-18 01:58:06
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>

int main() {
	std::string s, answer = "Hello World!";
	std::cin >> s;
	std::cout << answer << std::endl;
}
0