cppで掛け算するだけのプログラムで、正しい答えがでません。
小さい数字の掛け算は正しくできますが、大きい数の掛け算の答えがおかしいです。
C++
1#include <iostream> 2#include <vector> 3#include <cstdlib> 4#include <iomanip> 5 6using namespace std; 7 8int main() 9{ 10 int A, B; 11 cin >> A >> B; 12 cout << A * B << endl; 13} 14
入力値
100000 99999
期待する答え
9999900000
実際の結果
1409965408
実行環境
C++14 (GCC 5.4.1)で実行
https://atcoder.jp/contests/apg4b/custom_test
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/01/04 04:38