結果

問題 No.9000 Hello World! (テスト用)
ユーザー yuki2006
提出日時 2014-12-05 02:27:28
言語 C90
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 38 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 18,048 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 15:42:24
合計ジャッジ時間 532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:2:9: warning: implicit declaration of function ‘puts’ [-Wimplicit-function-declaration]
    2 |         puts("Hello World!");
      |         ^~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘puts’
  +++ |+#include <stdio.h>
    1 | int main(){

ソースコード

diff #

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