結果
| 問題 |
No.9000 Hello World! (テスト用)
|
| ユーザー |
ttjapan01
|
| 提出日時 | 2019-10-09 22:24:08 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 86 bytes |
| コンパイル時間 | 1,268 ms |
| コンパイル使用メモリ | 157,504 KB |
| 実行使用メモリ | 6,816 KB |
| 最終ジャッジ日時 | 2024-11-17 19:31:50 |
| 合計ジャッジ時間 | 1,683 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
コンパイルメッセージ
main.cpp:3:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
3 | main(){
| ^~~~
ソースコード
#include<bits/stdc++.h>
using namespace std;
main(){
cout<<"Hello World!"<<endl;
}
ttjapan01