結果

問題 No.9000 Hello World! (テスト用)
ユーザー Lynn
提出日時 2019-12-22 09:56:30
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 51 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 20,736 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-09-13 23:03:05
合計ジャッジ時間 610 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:2:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    2 | main() { puts("Hello World!"); }
      | ^~~~

ソースコード

diff #

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