結果

問題 No.633 バスの運賃
ユーザー iehniehn
提出日時 2018-01-19 21:31:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-06-06 18:56:57
合計ジャッジ時間 1,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
11,776 KB
testcase_01 AC 42 ms
11,776 KB
testcase_02 AC 38 ms
11,904 KB
testcase_03 AC 41 ms
11,904 KB
testcase_04 AC 39 ms
12,032 KB
testcase_05 AC 39 ms
12,032 KB
testcase_06 AC 38 ms
11,904 KB
testcase_07 AC 41 ms
11,776 KB
testcase_08 AC 40 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math,string,itertools,fractions,heapq,collections,re,array,bisect,sys,random,time,copy,functools

sys.setrecursionlimit(10**7)
inf = 10**20
eps = 1.0 / 10**15
mod = 10**9+7

def LI(): return [int(x) for x in sys.stdin.readline().split()]
def LI_(): return [int(x)-1 for x in sys.stdin.readline().split()]
def LF(): return [float(x) for x in sys.stdin.readline().split()]
def LS(): return sys.stdin.readline().split()
def I(): return int(sys.stdin.readline())
def F(): return float(sys.stdin.readline())
def S(): return input()
def pf(s): return print(s, flush=True)


def main():
    n = I()
    a = [I() for _ in range(n-1)] + [0]
    t = [LI() for _ in range(n)]
    r = 0
    k = 0
    for (b,c),ai in zip(t,a):
        k -= b
        k += c
        r += ai * k

    return r

print(main())


0