結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー kanenistkanenist
提出日時 2023-05-26 12:50:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,632 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 59,800 KB
最終ジャッジ日時 2024-11-27 20:21:32
合計ジャッジ時間 40,674 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,040 KB
testcase_01 AC 125 ms
40,676 KB
testcase_02 AC 234 ms
44,488 KB
testcase_03 AC 193 ms
42,004 KB
testcase_04 AC 256 ms
45,664 KB
testcase_05 AC 259 ms
45,820 KB
testcase_06 AC 246 ms
45,760 KB
testcase_07 AC 1,290 ms
59,416 KB
testcase_08 AC 601 ms
48,500 KB
testcase_09 AC 971 ms
58,804 KB
testcase_10 AC 907 ms
58,148 KB
testcase_11 AC 922 ms
58,244 KB
testcase_12 AC 1,194 ms
58,948 KB
testcase_13 AC 989 ms
58,696 KB
testcase_14 AC 904 ms
57,116 KB
testcase_15 AC 1,438 ms
59,364 KB
testcase_16 AC 1,412 ms
59,168 KB
testcase_17 AC 1,562 ms
59,544 KB
testcase_18 AC 1,599 ms
59,728 KB
testcase_19 AC 1,632 ms
59,736 KB
testcase_20 AC 1,594 ms
59,656 KB
testcase_21 AC 1,549 ms
59,796 KB
testcase_22 AC 1,548 ms
59,572 KB
testcase_23 AC 1,587 ms
59,688 KB
testcase_24 AC 1,632 ms
59,732 KB
testcase_25 AC 1,583 ms
59,800 KB
testcase_26 AC 1,608 ms
59,496 KB
testcase_27 AC 1,490 ms
59,296 KB
testcase_28 AC 1,600 ms
59,056 KB
testcase_29 AC 1,374 ms
58,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int m = sc.nextInt();
    	long a[] = new long[m + 1];
    	for(int i = 1; i <= m; i++)a[i] = sc.nextInt();
    	int q = sc.nextInt();
    	long sum = 0;
    	for(int h = 1; h <= m; h++){
    		sum += a[h]*a[h];
    	}
    	for(int i = 0; i < q; i++){
    		
    		int a1 = sc.nextInt();
    		int b = sc.nextInt();
    		int c = sc.nextInt();
    		sum -= a[a1]*a[a1] + a[c] * a[c];
    		a[a1] -= b;
    		a[c] += b;
    		sum += a[a1]*a[a1] + a[c] * a[c];
    		System.out.println(sum);
    	}
    }
}
0