結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | |
提出日時 | 2015-09-08 10:39:48 |
言語 | C90 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 73 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 18,944 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 04:56:55 |
合計ジャッジ時間 | 462 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:10: warning: ‘return’ with a value, in function returning void 5 | return 0; | ^ main.c:3:6: note: declared here 3 | void main(){ | ^~~~
ソースコード
#include <stdio.h> void main(){ printf("Hello World!"); return 0; }