結果

問題 No.633 バスの運賃
ユーザー brthyyjpbrthyyjp
提出日時 2021-08-31 20:29:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 52,864 KB
最終ジャッジ日時 2024-05-04 14:41:48
合計ジャッジ時間 1,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,608 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 33 ms
52,224 KB
testcase_03 AC 33 ms
52,480 KB
testcase_04 AC 35 ms
52,864 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 33 ms
52,096 KB
testcase_07 AC 33 ms
52,224 KB
testcase_08 AC 33 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = [int(input()) for i in range(n-1)]
B = []
C = []
for i in range(n):
    b, c = map(int, input().split())
    B.append(b)
    C.append(c)
cur = C[0]
ans = 0
for i in range(n-1):
    ans += A[i]*cur
    cur -= B[i+1]
    cur += C[i+1]
print(ans)
0