結果

問題 No.633 バスの運賃
ユーザー tentententen
提出日時 2020-09-04 19:19:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 77,536 KB
実行使用メモリ 44,744 KB
最終ジャッジ日時 2024-11-26 11:26:52
合計ジャッジ時間 4,105 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
44,744 KB
testcase_01 AC 116 ms
41,236 KB
testcase_02 AC 127 ms
41,632 KB
testcase_03 AC 121 ms
41,328 KB
testcase_04 AC 146 ms
41,652 KB
testcase_05 AC 114 ms
40,960 KB
testcase_06 AC 107 ms
40,212 KB
testcase_07 AC 118 ms
41,332 KB
testcase_08 AC 117 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	long[] prices = new long[n - 1];
    	for (int i = 0; i < n - 1; i++) {
    	    prices[i] = sc.nextInt();
    	}
    	long total = 0;
    	int current = 0;
    	for (int i = 0; i < n - 1; i++) {
    	    current -= sc.nextInt() - sc.nextInt();
    	    total += current * prices[i];
    	}
    	System.out.println(total);
    }
}
0