Submission #574815


Source Code Expand

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cctype>
#include<cstdlib>
#include<algorithm>
#include<bitset>
#include<vector>
#include<list>
#include<deque>
#include<queue>
#include<map>
#include<set>
#include<stack>
#include<cmath>
#include<sstream>
#include<fstream>
#include<iomanip>
#include<ctime>
#include<complex>
#include<functional>
#include<climits>
#include<cassert>
#include<iterator>
using namespace std;

int main() {
	long long int a, b;
	scanf("%lld%lld", &a, &b);
	long long int ans = (a + 1LL)*b;
	ans = max(ans, (b + 1LL)*a);
	printf("%lld\n", ans);
	return 0;
}

Submission Info

Submission Time
Task A - ゲーム
User Kmcode
Language C++ (GCC 4.9.2)
Score 100
Code Size 649 Byte
Status AC
Exec Time 27 ms
Memory 924 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:30:27: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%lld%lld", &a, &b);
                           ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 20
Set Name Test Cases
Sample sample-01.txt, sample-02.txt, sample-03.txt
All test-01.txt, test-02.txt, test-03.txt, test-04.txt, test-05.txt, test-06.txt, test-07.txt, test-08.txt, test-09.txt, test-10.txt, test-11.txt, test-12.txt, test-13.txt, test-14.txt, test-15.txt, test-16.txt, test-17.txt, test-18.txt, test-19.txt, test-20.txt
Case Name Status Exec Time Memory
sample-01.txt AC 27 ms 924 KB
sample-02.txt AC 25 ms 924 KB
sample-03.txt AC 24 ms 676 KB
test-01.txt AC 26 ms 672 KB
test-02.txt AC 24 ms 800 KB
test-03.txt AC 24 ms 756 KB
test-04.txt AC 26 ms 804 KB
test-05.txt AC 26 ms 924 KB
test-06.txt AC 24 ms 804 KB
test-07.txt AC 26 ms 800 KB
test-08.txt AC 25 ms 924 KB
test-09.txt AC 26 ms 924 KB
test-10.txt AC 25 ms 800 KB
test-11.txt AC 26 ms 804 KB
test-12.txt AC 26 ms 828 KB
test-13.txt AC 25 ms 916 KB
test-14.txt AC 24 ms 800 KB
test-15.txt AC 27 ms 792 KB
test-16.txt AC 25 ms 800 KB
test-17.txt AC 25 ms 920 KB
test-18.txt AC 26 ms 732 KB
test-19.txt AC 26 ms 808 KB
test-20.txt AC 25 ms 916 KB