結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー ks2mks2m
提出日時 2023-05-19 21:29:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 562 ms / 2,000 ms
コード長 982 bytes
コンパイル時間 2,436 ms
コンパイル使用メモリ 76,376 KB
実行使用メモリ 54,004 KB
最終ジャッジ日時 2024-12-18 02:16:47
合計ジャッジ時間 16,655 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		long[] a = new long[m];
		long ans = 0;
		for (int i = 0; i < m; i++) {
			a[i] = Integer.parseInt(sa[i]);
			ans += a[i] * a[i];
		}

		int q = Integer.parseInt(br.readLine());
		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < q; i++) {
			sa = br.readLine().split(" ");
			int c = Integer.parseInt(sa[0]) - 1;
			int k = Integer.parseInt(sa[1]);
			int d = Integer.parseInt(sa[2]) - 1;

			ans -= a[c] * a[c];
			ans -= a[d] * a[d];
			a[c] -= k;
			a[d] += k;
			ans += a[c] * a[c];
			ans += a[d] * a[d];
			pw.println(ans);
		}
		pw.flush();
		br.close();
	}
}
0