結果

問題 No.944 煎っぞ!
ユーザー keymoonkeymoon
提出日時 2021-02-02 03:12:06
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 59 ms / 3,000 ms
コード長 1,044 bytes
コンパイル時間 874 ms
コンパイル使用メモリ 114,492 KB
実行使用メモリ 32,412 KB
最終ジャッジ日時 2024-06-29 23:35:07
合計ジャッジ時間 3,605 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
29,552 KB
testcase_01 AC 53 ms
27,484 KB
testcase_02 AC 52 ms
29,776 KB
testcase_03 AC 53 ms
29,548 KB
testcase_04 AC 52 ms
31,600 KB
testcase_05 AC 51 ms
29,784 KB
testcase_06 AC 51 ms
29,788 KB
testcase_07 AC 51 ms
29,548 KB
testcase_08 AC 52 ms
31,724 KB
testcase_09 AC 53 ms
29,672 KB
testcase_10 AC 30 ms
27,512 KB
testcase_11 AC 34 ms
26,052 KB
testcase_12 AC 31 ms
28,052 KB
testcase_13 AC 24 ms
25,096 KB
testcase_14 AC 32 ms
24,116 KB
testcase_15 AC 30 ms
25,792 KB
testcase_16 AC 26 ms
25,120 KB
testcase_17 AC 26 ms
27,032 KB
testcase_18 AC 34 ms
24,372 KB
testcase_19 AC 35 ms
28,348 KB
testcase_20 AC 56 ms
28,296 KB
testcase_21 AC 59 ms
32,132 KB
testcase_22 AC 53 ms
29,728 KB
testcase_23 AC 51 ms
29,772 KB
testcase_24 AC 51 ms
31,528 KB
testcase_25 AC 51 ms
29,604 KB
testcase_26 AC 50 ms
31,924 KB
testcase_27 AC 52 ms
30,472 KB
testcase_28 AC 26 ms
27,276 KB
testcase_29 AC 25 ms
27,016 KB
testcase_30 AC 52 ms
32,412 KB
testcase_31 AC 58 ms
29,732 KB
testcase_32 AC 55 ms
29,724 KB
testcase_33 AC 53 ms
30,036 KB
testcase_34 AC 52 ms
29,884 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 System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        var a = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var sum = a.Sum();
        int res = 0;
        bool Validate(int sum)
        {
            int cur = 0;
            for (int i = 0; i < a.Length; i++)
            {
                cur += a[i];
                if (sum < cur) return false;
                if (sum == cur) cur = 0;
            }
            return cur == 0;
        }
        for (int i = 1; i * i <= sum; i++)
        {
            if (sum % i != 0) continue;
            if (Validate(i)) res = Max(res, sum / i);
            if (Validate(sum / i)) res = Max(res, i);
        }
        Console.WriteLine(res);
    }
}
0