結果

問題 No.9000 Hello World! (テスト用)
ユーザー waywaywaiwai
提出日時 2017-07-19 17:13:02
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 54,396 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-08 14:27:44
合計ジャッジ時間 890 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string.h>

int main(){
    char str[128];
    std::cin >> str[128];
    int input_len = strlen(str);
    if(input_len != 0){
	std::cout << "Hello World\n" << std::endl;
    }
    return 0;
}
0