結果

問題 No.1120 Strange Teacher
ユーザー bluemeganebluemegane
提出日時 2021-05-01 16:23:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 105 ms / 1,000 ms
コード長 1,250 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 106,112 KB
実行使用メモリ 37,376 KB
最終ジャッジ日時 2024-07-20 00:28:51
合計ジャッジ時間 4,235 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
18,432 KB
testcase_01 AC 27 ms
18,688 KB
testcase_02 AC 32 ms
19,072 KB
testcase_03 AC 39 ms
21,120 KB
testcase_04 AC 103 ms
36,608 KB
testcase_05 AC 102 ms
36,480 KB
testcase_06 AC 101 ms
36,352 KB
testcase_07 AC 102 ms
36,480 KB
testcase_08 AC 101 ms
36,736 KB
testcase_09 AC 27 ms
18,816 KB
testcase_10 AC 100 ms
36,736 KB
testcase_11 AC 99 ms
36,480 KB
testcase_12 AC 101 ms
36,608 KB
testcase_13 AC 101 ms
36,736 KB
testcase_14 AC 101 ms
36,736 KB
testcase_15 AC 102 ms
36,608 KB
testcase_16 AC 101 ms
36,480 KB
testcase_17 AC 101 ms
36,480 KB
testcase_18 AC 27 ms
18,688 KB
testcase_19 AC 105 ms
37,376 KB
testcase_20 AC 26 ms
18,816 KB
testcase_21 AC 26 ms
18,688 KB
testcase_22 AC 26 ms
18,816 KB
testcase_23 AC 27 ms
18,816 KB
testcase_24 AC 97 ms
35,456 KB
testcase_25 AC 26 ms
18,688 KB
testcase_26 AC 26 ms
18,688 KB
testcase_27 AC 26 ms
18,688 KB
testcase_28 AC 25 ms
18,816 KB
testcase_29 AC 26 ms
18,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, long.Parse);
        line = Console.ReadLine().Trim().Split(' ');
        var b = Array.ConvertAll(line, long.Parse);
        if (n == 2) getAns2(n, a, b);
        else getAns3(n, a, b);
    }
    static void getAns2(int n, long[] a, long[] b)
    {
        if (a.Sum() != b.Sum()) { Console.WriteLine(-1); return; }
        Console.WriteLine(Abs(a[0] - b[0]));
    }
    static void getAns3(int n, long[] a, long[] b)
    {
        var d = a.Sum() - b.Sum();
        if (d % (n - 2L) != 0) { Console.WriteLine(-1); return; }
        var t = d / (n - 2L);
        for (int i = 0; i < n; i++) a[i] -= t;
        var count = 0L;
        for (int i = 0; i < n; i++)
        {
            var w = b[i] - a[i];
            if (w < 0) { Console.WriteLine(-1); return; }
            if (w > 0)
            {
                if (w % 2L != 0) { Console.WriteLine(-1); return; }
                else count += w / 2L;
            }
        }
        if (count == t) Console.WriteLine(t);
    }
}
0