結果
問題 | No.633 バスの運賃 |
ユーザー | Pump0129 |
提出日時 | 2018-03-26 23:37:09 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 168 ms / 2,000 ms |
コード長 | 842 bytes |
コンパイル時間 | 3,897 ms |
コンパイル使用メモリ | 74,712 KB |
実行使用メモリ | 42,016 KB |
最終ジャッジ日時 | 2024-06-25 12:22:19 |
合計ジャッジ時間 | 4,641 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 148 ms
41,256 KB |
testcase_01 | AC | 146 ms
41,332 KB |
testcase_02 | AC | 153 ms
41,388 KB |
testcase_03 | AC | 155 ms
41,612 KB |
testcase_04 | AC | 168 ms
42,016 KB |
testcase_05 | AC | 152 ms
41,580 KB |
testcase_06 | AC | 148 ms
41,456 KB |
testcase_07 | AC | 149 ms
41,560 KB |
testcase_08 | AC | 147 ms
41,644 KB |
ソースコード
package net.ipipip0129.yukicoder.no633; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int busStopCount = Integer.parseInt(scan.nextLine()); int[] busStopMoney = new int[busStopCount - 1]; for (int i = 0; i < busStopCount - 1; i++) busStopMoney[i] = Integer.parseInt(scan.nextLine()); int busPassengers = Integer.parseInt(scan.nextLine().split(" ")[1]); int toalMonay = 0; for (int i = 0; i < busStopCount - 1; i++) { toalMonay += busStopMoney[i] * busPassengers; String[] data = scan.nextLine().split(" "); busPassengers += Integer.parseInt(data[1]) - Integer.parseInt(data[0]); } System.out.println(toalMonay); } }