結果

問題 No.1109 調の判定
ユーザー bluemeganebluemegane
提出日時 2020-07-11 16:28:37
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 924 bytes
コンパイル時間 2,442 ms
コンパイル使用メモリ 113,252 KB
実行使用メモリ 26,724 KB
最終ジャッジ日時 2024-10-13 04:58:12
合計ジャッジ時間 4,803 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
18,560 KB
testcase_01 AC 24 ms
18,688 KB
testcase_02 AC 26 ms
18,688 KB
testcase_03 AC 25 ms
18,816 KB
testcase_04 AC 24 ms
18,432 KB
testcase_05 AC 25 ms
18,816 KB
testcase_06 AC 24 ms
18,560 KB
testcase_07 AC 24 ms
18,688 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 25 ms
18,560 KB
testcase_11 AC 25 ms
18,688 KB
testcase_12 AC 26 ms
18,304 KB
testcase_13 AC 25 ms
18,432 KB
testcase_14 AC 25 ms
18,816 KB
testcase_15 AC 25 ms
18,688 KB
testcase_16 AC 25 ms
18,432 KB
testcase_17 AC 25 ms
18,816 KB
testcase_18 AC 24 ms
17,792 KB
testcase_19 AC 23 ms
17,792 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 26 ms
18,560 KB
testcase_24 AC 25 ms
18,560 KB
testcase_25 AC 24 ms
18,816 KB
testcase_26 AC 24 ms
18,560 KB
testcase_27 AC 24 ms
18,688 KB
testcase_28 AC 24 ms
18,560 KB
testcase_29 AC 23 ms
18,560 KB
testcase_30 AC 23 ms
18,560 KB
testcase_31 AC 23 ms
18,688 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 23 ms
18,432 KB
testcase_36 AC 24 ms
18,432 KB
testcase_37 AC 24 ms
18,688 KB
testcase_38 AC 24 ms
18,560 KB
testcase_39 AC 24 ms
18,688 KB
testcase_40 AC 24 ms
18,688 KB
testcase_41 AC 24 ms
18,560 KB
testcase_42 WA -
testcase_43 AC 24 ms
18,688 KB
testcase_44 AC 23 ms
18,688 KB
testcase_45 AC 24 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 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, int.Parse);
        getAns(n, a);
    }
    static void getAns(int n, int[] a)
    {
        if (n == 1) { Console.WriteLine(-1); return; }
        var count = 0;
        var ansi = 0;
        for (int i = 0; i < n; i++)
        {
            if (check(n, a, i)) { ansi = i; count++; }
        }
        Console.WriteLine(count == 1 ? a[ansi] : -1);
    }
    static bool check(int n, int[] a, int t)
    {
        var c = new int[] { 0, 2, 4, 5, 7, 9, 11 };
        var d = a[t];
        foreach (var x in a)
        {
            var y = x - d;
            if (y < 0) y += 12;
            y %= 12;
            if (!c.Contains(y)) return false;
        }
        return true;
    }
}
0