結果

問題 No.9000 Hello World! (テスト用)
ユーザー shioya
提出日時 2018-10-09 17:40:07
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 147 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 66,340 KB
最終ジャッジ日時 2025-01-06 14:27:08
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

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