結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー ks2mks2m
提出日時 2023-05-19 21:29:01
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,872 KB
testcase_01 AC 55 ms
36,920 KB
testcase_02 AC 98 ms
38,724 KB
testcase_03 AC 63 ms
37,244 KB
testcase_04 AC 108 ms
38,812 KB
testcase_05 AC 113 ms
38,912 KB
testcase_06 AC 110 ms
39,096 KB
testcase_07 AC 429 ms
49,456 KB
testcase_08 AC 238 ms
46,992 KB
testcase_09 AC 342 ms
49,560 KB
testcase_10 AC 297 ms
44,624 KB
testcase_11 AC 353 ms
48,328 KB
testcase_12 AC 445 ms
53,888 KB
testcase_13 AC 349 ms
50,624 KB
testcase_14 AC 314 ms
48,028 KB
testcase_15 AC 487 ms
49,984 KB
testcase_16 AC 434 ms
46,852 KB
testcase_17 AC 543 ms
53,556 KB
testcase_18 AC 554 ms
54,004 KB
testcase_19 AC 543 ms
53,716 KB
testcase_20 AC 555 ms
53,736 KB
testcase_21 AC 547 ms
53,592 KB
testcase_22 AC 559 ms
53,544 KB
testcase_23 AC 538 ms
53,696 KB
testcase_24 AC 547 ms
53,860 KB
testcase_25 AC 561 ms
53,220 KB
testcase_26 AC 562 ms
53,484 KB
testcase_27 AC 491 ms
53,004 KB
testcase_28 AC 531 ms
53,196 KB
testcase_29 AC 460 ms
46,428 KB
権限があれば一括ダウンロードができます

ソースコード

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