結果
| 問題 | No.809 かけ算 |
| コンテスト | |
| ユーザー |
motonekoro2
|
| 提出日時 | 2019-06-13 10:15:45 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 115 bytes |
| 記録 | |
| コンパイル時間 | 380 ms |
| コンパイル使用メモリ | 66,176 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-30 10:54:51 |
| 合計ジャッジ時間 | 2,232 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 6 |
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:5:18: warning: 'c' is used uninitialized [-Wuninitialized]
5 | cout<<1<<""<<c;
| ^
main.cpp:4:9: note: 'c' was declared here
4 | int c;
| ^
ソースコード
#include <iostream>
using namespace std;
int main(void){
int c;
cout<<1<<""<<c;
return 0;
}
motonekoro2