結果

問題 No.2284 Assembly
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-04-28 22:15:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 96,384 KB
最終ジャッジ日時 2024-04-28 23:48:01
合計ジャッジ時間 4,538 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 42 ms
51,584 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 275 ms
96,128 KB
testcase_09 AC 272 ms
96,128 KB
testcase_10 AC 271 ms
96,128 KB
testcase_11 AC 271 ms
96,384 KB
testcase_12 AC 256 ms
96,128 KB
testcase_13 AC 255 ms
96,256 KB
testcase_14 AC 275 ms
96,384 KB
testcase_15 AC 269 ms
96,384 KB
testcase_16 AC 278 ms
96,384 KB
testcase_17 AC 263 ms
96,128 KB
testcase_18 AC 272 ms
96,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
AB = [list(map(int,input().split())) for i in range(n)]
sA,sB = 0,0
for a,b in AB:
    sA += a
    sB += b


ans = 0
for a,b in AB:
    sA -= a
    sB -= b
    ans += max(sA*b,sB*a)
print(ans)
0