結果

問題 No.9000 Hello World! (テスト用)
ユーザー Cassian Russell-Hart
提出日時 2025-09-07 22:43:33
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 55 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 24,016 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-09-07 22:43:35
合計ジャッジ時間 1,219 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:2:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
    2 | main(){
      | ^~~~

ソースコード

diff #

#include <stdio.h>
main(){
	printf("Hello World!\n");
}
0