結果
| 問題 | No.809 かけ算 |
| コンテスト | |
| ユーザー |
ouoz1V
|
| 提出日時 | 2019-04-26 20:36:35 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 122 bytes |
| 記録 | |
| コンパイル時間 | 1,134 ms |
| コンパイル使用メモリ | 172,320 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-19 05:56:41 |
| 合計ジャッジ時間 | 3,907 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 6 |
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:6:14: warning: 'C' is used uninitialized [-Wuninitialized]
6 | cout<<1<<C<<endl;
| ^
main.cpp:5:19: note: 'C' was declared here
5 | long long int C;
| ^
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
long long int C;
cout<<1<<C<<endl;
return 0;
}
ouoz1V