結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | div_jp |
提出日時 | 2016-11-24 19:47:38 |
言語 | C90 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 70 bytes |
コンパイル時間 | 111 ms |
コンパイル使用メモリ | 19,328 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 13:07:19 |
合計ジャッジ時間 | 518 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:4:16: warning: ‘return’ with a value, in function returning void 4 | return 0; | ^ main.c:2:6: note: declared here 2 | void main() { | ^~~~
ソースコード
#include <stdio.h> void main() { printf("Hello World!"); return 0; }