結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー kakel-sankakel-san
提出日時 2023-07-29 20:11:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 839 ms
コンパイル使用メモリ 114,624 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-10-08 06:40:40
合計ジャッジ時間 8,399 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
19,328 KB
testcase_01 AC 26 ms
19,200 KB
testcase_02 AC 31 ms
20,096 KB
testcase_03 AC 30 ms
19,840 KB
testcase_04 AC 32 ms
20,096 KB
testcase_05 AC 32 ms
20,096 KB
testcase_06 AC 32 ms
20,224 KB
testcase_07 AC 157 ms
36,992 KB
testcase_08 AC 60 ms
27,520 KB
testcase_09 AC 107 ms
33,408 KB
testcase_10 AC 102 ms
28,800 KB
testcase_11 AC 114 ms
32,256 KB
testcase_12 AC 146 ms
36,736 KB
testcase_13 AC 116 ms
33,536 KB
testcase_14 AC 100 ms
30,848 KB
testcase_15 AC 197 ms
37,248 KB
testcase_16 AC 190 ms
36,736 KB
testcase_17 AC 222 ms
39,040 KB
testcase_18 AC 218 ms
38,912 KB
testcase_19 AC 222 ms
39,040 KB
testcase_20 AC 218 ms
39,296 KB
testcase_21 AC 218 ms
39,040 KB
testcase_22 AC 217 ms
39,040 KB
testcase_23 AC 223 ms
39,168 KB
testcase_24 AC 221 ms
39,040 KB
testcase_25 AC 220 ms
39,040 KB
testcase_26 AC 224 ms
39,296 KB
testcase_27 AC 192 ms
35,712 KB
testcase_28 AC 209 ms
42,496 KB
testcase_29 AC 185 ms
36,608 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var a = NList;
        var q = NN;
        var map = NArr(q);
        var ans = new long[q + 1];
        foreach (var ai in a) ans[0] += (long)ai * ai;
        for (var i = 0; i < q; ++i)
        {
            var x = map[i][0] - 1;
            var k = map[i][1];
            var y = map[i][2] - 1;
            ans[i + 1] = ans[i] + 2L * k * ((long)k - a[x] + a[y]);
            a[x] -= k;
            a[y] += k;
        }
        WriteLine(string.Join("\n", ans.Skip(1)));
    }
}
0