結果
| 問題 | No.633 バスの運賃 |
| コンテスト | |
| ユーザー |
r_ishida
|
| 提出日時 | 2026-01-17 08:30:18 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 40 ms / 2,000 ms |
| コード長 | 485 bytes |
| 記録 | |
| コンパイル時間 | 388 ms |
| コンパイル使用メモリ | 82,156 KB |
| 実行使用メモリ | 53,780 KB |
| 最終ジャッジ日時 | 2026-01-17 08:30:20 |
| 合計ジャッジ時間 | 1,517 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 |
ソースコード
import math
import sys
def S(): return sys.stdin.readline().rstrip()
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int, sys.stdin.readline().rstrip().split())
def LI(): return list(map(int, sys.stdin.readline().rstrip().split()))
def LS(): return list(sys.stdin.readline().rstrip().split())
n = I()
a = []
for _ in range(n-1):
a.append(I())
cnt = 0
ans = 0
for i in range(n-1):
b, c = MI()
cnt += c-b
ans += a[i]*cnt
b, c = MI()
print(ans)
r_ishida