結果

問題 No.633 バスの運賃
ユーザー tentententen
提出日時 2020-09-04 19:19:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 2,569 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-05-04 21:09:12
合計ジャッジ時間 3,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,256 KB
testcase_01 AC 110 ms
41,188 KB
testcase_02 AC 122 ms
41,200 KB
testcase_03 AC 128 ms
41,468 KB
testcase_04 AC 148 ms
41,704 KB
testcase_05 AC 115 ms
41,680 KB
testcase_06 AC 119 ms
41,008 KB
testcase_07 AC 127 ms
41,164 KB
testcase_08 AC 121 ms
41,364 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