結果

問題 No.818 Dinner time
ユーザー azbrugbyazbrugby
提出日時 2019-04-28 10:46:18
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 624 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 67,696 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 22:06:11
合計ジャッジ時間 3,499 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cstring>
#include <sstream>
#include <map>
#include <queue>
#include <vector>
#include <climits>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> pos;
const ll MOD = 1000000007,N=100010;
ll n, m, fn = INT_MIN,fn2=INT_MIN;
pos ab[N];
int main() {
	cin >> n >> m;
	for (ll i = 1,cfn=0; i <= n; i++) {
		cin >> ab[i].first >> ab[i].second;
		cfn += max(ab[i].first, ab[i].second);
		fn = max(cfn, fn);
	}
	for (ll i = 1, cfn2 = 0; i <= n; i++) {
		cfn2 += ab[i].first;
		fn2 = max(cfn2, fn2);
	}

	cout << fn + max((ll)0,fn2) * (m - 1) << endl;
	return 0;
}
0