結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | waywaywaiwai |
提出日時 | 2017-07-19 17:11:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 216 bytes |
コンパイル時間 | 530 ms |
コンパイル使用メモリ | 53,848 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 14:27:30 |
合計ジャッジ時間 | 912 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#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; }