結果
| 問題 |
No.1485 運賃
|
| コンテスト | |
| ユーザー |
4Bet_Allin
|
| 提出日時 | 2021-05-12 02:50:46 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 121 bytes |
| コンパイル時間 | 512 ms |
| コンパイル使用メモリ | 61,740 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-22 08:50:33 |
| 合計ジャッジ時間 | 986 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 5 |
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:6:17: warning: 'm' is used uninitialized [-Wuninitialized]
6 | cout << n + m;
| ^
main.cpp:4:12: note: 'm' was declared here
4 | int n, m;
| ^
ソースコード
#include<iostream>
using namespace std;
int main(void){
int n, m;
cin >> n, m;
cout << n + m;
return 0;
}
4Bet_Allin