結果
| 問題 | No.5000 特殊ジャッジテスト(テスト用) |
| ユーザー |
kongarishisyamo
|
| 提出日時 | 2016-05-22 01:47:47 |
| 言語 | C++11(廃止可能性あり) (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 88 bytes |
| 記録 | |
| コンパイル時間 | 318 ms |
| コンパイル使用メモリ | 70,228 KB |
| 実行使用メモリ | 7,716 KB |
| スコア | 3,648 |
| 最終ジャッジ日時 | 2026-03-03 21:48:48 |
| 合計ジャッジ時間 | 708 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 4 |
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:8:21: warning: 'N' is used uninitialized [-Wuninitialized]
8 | cout<<"0 "<<N<<endl;
| ^
main.cpp:6:13: note: 'N' was declared here
6 | int N;
| ^
ソースコード
#include<iostream>
using namespace std;
int main(){
int N;
cout<<"0 "<<N<<endl;
}
kongarishisyamo