結果

問題 No.9000 Hello World! (テスト用)
ユーザー pe
提出日時 2017-06-10 15:23:42
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 87 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 21,632 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 14:49:35
合計ジャッジ時間 1,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 RE * 3
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:4:6: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 | scanf("%s",&s);
      | ~~~~~^~~~~~~~~

ソースコード

diff #

#include<stdio.h>
int main()
{char s;
scanf("%s",&s);
puts("Hello World!");
return 0;
}
0