結果
問題 | No.633 バスの運賃 |
ユーザー | roaris |
提出日時 | 2019-12-22 20:46:21 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 452 bytes |
コンパイル時間 | 264 ms |
コンパイル使用メモリ | 82,252 KB |
実行使用メモリ | 60,972 KB |
最終ジャッジ日時 | 2024-09-14 16:53:04 |
合計ジャッジ時間 | 1,327 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
51,840 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 40 ms
52,096 KB |
testcase_04 | WA | - |
testcase_05 | AC | 38 ms
51,968 KB |
testcase_06 | AC | 39 ms
52,224 KB |
testcase_07 | WA | - |
testcase_08 | AC | 43 ms
52,024 KB |
ソースコード
n = int(input()) a = [int(input()) for _ in range(n-1)] acc = [0] for ai in a: acc.append(acc[-1]+ai) ans = 0 l = [0]*n for i in range(n): bi, ci = map(int, input().split()) for j in range(n): if l[j]-bi>=0: ans += bi*(acc[i]-acc[j]) l[j] -= bi break else: ans += l[j]*(acc[i]-acc[j]) l[j] = 0 bi -= l[j] l[i] += ci print(ans)