結果

問題 No.9000 Hello World! (テスト用)
ユーザー testestesttestestest
提出日時 2017-03-02 22:41:11
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 29 bytes
コンパイル時間 1,184 ms
コンパイル使用メモリ 25,072 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-26 15:56:24
合計ジャッジ時間 643 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 0 ms
4,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:1:1: 警告: 戻り値の型をデフォルトの ‘int’ にします [-Wimplicit-int]
    1 | main(){puts("Hello World!");}
      | ^~~~
main.c: 関数 ‘main’ 内:
main.c:1:8: 警告: 関数 ‘puts’ の暗黙的な宣言です [-Wimplicit-function-declaration]
    1 | main(){puts("Hello World!");}
      |        ^~~~
main.c:1:1: 備考: include ‘<stdio.h>’ or provide a declaration of ‘puts’
  +++ |+#include <stdio.h>
    1 | main(){puts("Hello World!");}

ソースコード

diff #

main(){puts("Hello World!");}
0