結果
問題 | No.3058 M + D Problem |
ユーザー | cider |
提出日時 | 2020-04-01 21:25:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 169 bytes |
コンパイル時間 | 1,505 ms |
コンパイル使用メモリ | 164,832 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-27 08:06:02 |
合計ジャッジ時間 | 2,734 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:7:15: warning: 'm' is used uninitialized [-Wuninitialized] 7 | if (m == 4 && d == 1)cout << 1000 << endl; | ~~^~~~ main.cpp:6:13: note: 'm' was declared here 6 | int m, d; | ^ main.cpp:7:25: warning: 'd' is used uninitialized [-Wuninitialized] 7 | if (m == 4 && d == 1)cout << 1000 << endl; | ~~^~~~ main.cpp:6:16: note: 'd' was declared here 6 | int m, d; | ^
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; signed main() { int m, d; if (m == 4 && d == 1)cout << 1000 << endl; else cout << m + d << endl; }