結果
問題 |
No.9000 Hello World! (テスト用)
|
ユーザー |
![]() |
提出日時 | 2018-01-17 00:37:35 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 177 bytes |
コンパイル時間 | 629 ms |
コンパイル使用メモリ | 55,128 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 05:58:18 |
合計ジャッジ時間 | 883 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 4 |
ソースコード
#include <iostream> #include <string> int main() { std::string msg = "Hello world!"; std::string input; std::cin >> input; std::cout << msg << std::endl; return 0; }