結果

問題 No.9000 Hello World! (テスト用)
ユーザー lessoniana sepioteuthis
提出日時 2021-02-28 18:42:02
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 144 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 64,196 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-02 21:47:52
合計ジャッジ時間 992 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>

using namespace std;

int main() {
    string s;
    cin >> s;
    cout << "Hello World!" << endl;
    
}
0