結果

問題 No.9000 Hello World! (テスト用)
ユーザー
提出日時 2015-09-08 10:41:43
言語 C90
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 87 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 19,200 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-19 04:57:12
合計ジャッジ時間 434 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:4:11: warning: format ‘%d’ expects a matching ‘int *’ argument [-Wformat=]
    4 |   scanf("%d");
      |          ~^
      |           |
      |           int *
main.c:6:10: warning: ‘return’ with a value, in function returning void
    6 |   return 0;
      |          ^
main.c:3:6: note: declared here
    3 | void main(){
      |      ^~~~
main.c:4:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 |   scanf("%d");
      |   ^~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

void main(){
  scanf("%d");
  printf("Hello World!");
  return 0;
}
0