結果

問題 No.9000 Hello World! (テスト用)
ユーザー waywaywaiwai
提出日時 2017-07-19 17:11:59
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 530 ms
コンパイル使用メモリ 53,848 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 14:27:30
合計ジャッジ時間 912 ms
ジャッジサーバーID
(参考情報)
judge4 / 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" << std::endl;
    }
    return 0;
}
0