結果
| 問題 | No.552 十分簡単な星1の問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-11-08 20:30:50 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 108 bytes |
| 記録 | |
| コンパイル時間 | 468 ms |
| コンパイル使用メモリ | 68,596 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-18 04:27:52 |
| 合計ジャッジ時間 | 2,388 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 46 |
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:6:23: warning: 'n' is used uninitialized [-Wuninitialized]
6 | cout << n * 10 << '\n';
| ^~~~
main.cpp:5:9: note: 'n' was declared here
5 | int n;
| ^
ソースコード
#include <iostream>
using namespace std;
int main(){
int n;
cout << n * 10 << '\n';
return 0;
}