結果
問題 |
No.9000 Hello World! (テスト用)
|
ユーザー |
![]() |
提出日時 | 2017-01-28 13:14:53 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 51 bytes |
コンパイル時間 | 420 ms |
コンパイル使用メモリ | 18,176 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-25 12:24:00 |
合計ジャッジ時間 | 652 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
コンパイルメッセージ
main.c:1:1: warning: return type defaults to ‘int’ [-Wimplicit-int] 1 | main(){ | ^~~~ main.c: In function ‘main’: main.c:2:9: warning: implicit declaration of function ‘write’ [-Wimplicit-function-declaration] 2 | write(1,"Hello World!\n",13); | ^~~~~
ソースコード
main(){ write(1,"Hello World!\n",13); return 0; }