結果
問題 | No.633 バスの運賃 |
ユーザー | denderaKawazu |
提出日時 | 2018-02-15 09:48:13 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 154 ms / 2,000 ms |
コード長 | 1,264 bytes |
コンパイル時間 | 2,224 ms |
コンパイル使用メモリ | 76,768 KB |
実行使用メモリ | 41,908 KB |
最終ジャッジ日時 | 2024-12-25 22:03:54 |
合計ジャッジ時間 | 4,168 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
41,068 KB |
testcase_01 | AC | 129 ms
41,024 KB |
testcase_02 | AC | 131 ms
41,348 KB |
testcase_03 | AC | 140 ms
41,304 KB |
testcase_04 | AC | 154 ms
41,908 KB |
testcase_05 | AC | 130 ms
40,136 KB |
testcase_06 | AC | 140 ms
41,084 KB |
testcase_07 | AC | 131 ms
41,208 KB |
testcase_08 | AC | 136 ms
41,148 KB |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Scanner; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; Scanner in = new Scanner(inputStream); PrintWriter out = new PrintWriter(outputStream); Task solver = new Task(); solver.solve(1, in, out); out.close(); } static class Task { public void solve(int testNumber, Scanner in, PrintWriter out) { final int n = in.nextInt(); int[] a = new int[n - 1]; for (int i = 0; i < n - 1; i++) { a[i] = in.nextInt(); } int[] bc = new int[n]; for (int i = 0; i < n; i++) { int b = in.nextInt(); int c = in.nextInt(); bc[i] = c - b; } int ans = 0; int p = bc[0]; for (int i = 1; i < n; i++) { ans += a[i - 1] * p; p += bc[i]; } out.println(ans); } } }