結果

問題 No.1120 Strange Teacher
ユーザー bluemeganebluemegane
提出日時 2021-05-01 16:30:45
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 105 ms / 1,000 ms
コード長 1,137 bytes
コンパイル時間 841 ms
コンパイル使用メモリ 113,916 KB
実行使用メモリ 37,504 KB
最終ジャッジ日時 2024-07-20 00:36:13
合計ジャッジ時間 4,153 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,816 KB
testcase_01 AC 28 ms
18,560 KB
testcase_02 AC 33 ms
19,072 KB
testcase_03 AC 40 ms
20,736 KB
testcase_04 AC 105 ms
36,608 KB
testcase_05 AC 105 ms
36,352 KB
testcase_06 AC 104 ms
36,352 KB
testcase_07 AC 104 ms
36,736 KB
testcase_08 AC 105 ms
36,480 KB
testcase_09 AC 28 ms
18,304 KB
testcase_10 AC 102 ms
36,480 KB
testcase_11 AC 105 ms
36,352 KB
testcase_12 AC 103 ms
36,608 KB
testcase_13 AC 101 ms
36,352 KB
testcase_14 AC 101 ms
36,608 KB
testcase_15 AC 101 ms
36,480 KB
testcase_16 AC 102 ms
36,480 KB
testcase_17 AC 101 ms
36,480 KB
testcase_18 AC 28 ms
18,816 KB
testcase_19 AC 105 ms
37,504 KB
testcase_20 AC 26 ms
17,920 KB
testcase_21 AC 26 ms
17,792 KB
testcase_22 AC 28 ms
18,688 KB
testcase_23 AC 27 ms
18,432 KB
testcase_24 AC 100 ms
35,712 KB
testcase_25 AC 26 ms
17,792 KB
testcase_26 AC 29 ms
18,560 KB
testcase_27 AC 29 ms
18,688 KB
testcase_28 AC 28 ms
18,688 KB
testcase_29 AC 28 ms
18,816 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[0] + a[1] != b[0] + b[1]) { 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++)
        {
            var w = b[i] - a[i] + t;
            if (w < 0) { Console.WriteLine(-1); return; }
            if (w > 0)
            {
                if (w % 2L != 0) { Console.WriteLine(-1); return; }
            }
        }
        Console.WriteLine(t);
    }
}
0