結果

問題 No.633 バスの運賃
ユーザー YamaKasaYamaKasa
提出日時 2018-09-30 16:30:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-10-12 09:11:43
合計ジャッジ時間 4,237 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,040 KB
testcase_01 AC 134 ms
41,560 KB
testcase_02 AC 138 ms
41,392 KB
testcase_03 AC 144 ms
41,512 KB
testcase_04 AC 166 ms
41,640 KB
testcase_05 AC 128 ms
41,120 KB
testcase_06 AC 129 ms
41,300 KB
testcase_07 AC 133 ms
41,416 KB
testcase_08 AC 133 ms
41,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int[]a = new int[n];
		int[]b = new int[n];
		int[]c = new int[n];
		for(int i = 0; i < n - 1; i++) {
			a[i] = scan.nextInt();
		}
		for(int i = 0; i < n; i++) {
			b[i] = scan.nextInt();
			c[i] = scan.nextInt();
		}
		scan.close();
		int sum = 0;
		int B = 0;
		int C = 0;
		for(int i = 0; i < n; i++) {
			B += b[i];
			C += c[i];
			sum += a[i] * (C - B);
		}
		System.out.println(sum);
	}
}
0