結果

問題 No.944 煎っぞ!
ユーザー bluemeganebluemegane
提出日時 2021-05-15 20:46:05
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 54 ms / 3,000 ms
コード長 1,184 bytes
コンパイル時間 3,343 ms
コンパイル使用メモリ 111,592 KB
実行使用メモリ 32,124 KB
最終ジャッジ日時 2024-10-03 07:50:52
合計ジャッジ時間 3,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
29,796 KB
testcase_01 AC 51 ms
30,004 KB
testcase_02 AC 53 ms
30,056 KB
testcase_03 AC 53 ms
29,748 KB
testcase_04 AC 52 ms
31,932 KB
testcase_05 AC 50 ms
29,588 KB
testcase_06 AC 51 ms
28,132 KB
testcase_07 AC 51 ms
30,180 KB
testcase_08 AC 52 ms
29,924 KB
testcase_09 AC 51 ms
29,672 KB
testcase_10 AC 29 ms
25,448 KB
testcase_11 AC 33 ms
26,208 KB
testcase_12 AC 31 ms
25,828 KB
testcase_13 AC 26 ms
25,304 KB
testcase_14 AC 35 ms
26,072 KB
testcase_15 AC 34 ms
27,932 KB
testcase_16 AC 28 ms
25,184 KB
testcase_17 AC 27 ms
25,064 KB
testcase_18 AC 35 ms
28,240 KB
testcase_19 AC 33 ms
26,212 KB
testcase_20 AC 52 ms
32,124 KB
testcase_21 AC 51 ms
30,256 KB
testcase_22 AC 51 ms
30,128 KB
testcase_23 AC 51 ms
30,004 KB
testcase_24 AC 50 ms
31,872 KB
testcase_25 AC 53 ms
29,620 KB
testcase_26 AC 50 ms
27,952 KB
testcase_27 AC 50 ms
30,228 KB
testcase_28 AC 25 ms
25,048 KB
testcase_29 AC 24 ms
25,192 KB
testcase_30 AC 52 ms
30,032 KB
testcase_31 AC 53 ms
29,996 KB
testcase_32 AC 50 ms
29,872 KB
testcase_33 AC 53 ms
32,052 KB
testcase_34 AC 54 ms
29,852 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.Collections.Generic;
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);
        var sum = a.Sum();
        var amax = a.Max();
        var c = new List<int>();
        for (int i = 1; i * i <= sum; i++)
        {
            if (sum % i == 0)
            {
                if (i >= amax) c.Add(i);
                if (sum / i != i && sum / i >= amax) c.Add(sum / i);
            }
        }
        c.Sort();
        var b = new int[n + 1];
        for (int i = 0; i < n; i++)
        {
            b[i + 1] = b[i] + a[i];
        }
        foreach (var x in c)
        {
            if (check(n, b, x)) { Console.WriteLine(sum / x); break; }
        }
    }
    static bool check(int n, int[] b, int t)
    {
        var p = 0;
        var q = p + 1;
        while (p < n)
        {
            var w = b[q] - b[p];
            if (w > t) return false;
            else if (w == t) { p = q; q = p + 1; continue; }
            q++;
        }
        return true;
    }
}
0