結果
| 問題 | No.809 かけ算 |
| コンテスト | |
| ユーザー |
Taka
|
| 提出日時 | 2019-04-14 11:54:54 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 113 bytes |
| 記録 | |
| コンパイル時間 | 282 ms |
| コンパイル使用メモリ | 68,068 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-29 20:13:12 |
| 合計ジャッジ時間 | 1,795 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 6 |
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:7:22: warning: 'c' is used uninitialized [-Wuninitialized]
7 | cout<<1<<" "<<c<<'\n';
| ^~~~
main.cpp:6:9: note: 'c' was declared here
6 | int c;
| ^
ソースコード
#include <iostream>
using namespace std;
int main(){
int c;
cout<<1<<" "<<c<<'\n';
return 0;
}
Taka