結果

問題 No.9000 Hello World! (テスト用)
ユーザー kroton
提出日時 2014-10-28 23:34:03
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
RE  
実行時間 -
コード長 150 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 53,332 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-30 14:23:15
合計ジャッジ時間 1,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
   int t = 0;
   int v = 123 / t;
   cout << "Hello World!" << v << endl;
   return 0;
}
0