結果

問題 No.818 Dinner time
ユーザー 双六双六
提出日時 2019-04-19 23:17:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 436 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-09-23 04:55:57
合計ジャッジ時間 7,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 29 ms
10,752 KB
testcase_02 WA -
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 401 ms
14,592 KB
testcase_18 AC 276 ms
13,312 KB
testcase_19 AC 277 ms
13,312 KB
testcase_20 AC 361 ms
14,336 KB
testcase_21 AC 313 ms
13,568 KB
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 #

def getlist():
	return list(map(int, input().split()))

N, M = getlist()

L = []
for i in range(N):
	ans = 0
	A, B = getlist()
	if 0 <= A and 0 <= B:
		if A < B:
			ans += (M - 1) * A + B
		else:
			ans += M * A
	elif A < 0 and 0 <= B:
		ans += B
	elif A < 0 and B < 0:
		if A * M < B:
			ans += B
		else:
			ans += A * M
	L.append(ans)

ANS = -float("inf")
val = 0
for i in range(N):
	val += L[i]
	if val > ANS:
		ANS = val

print(ANS)
0