結果

問題 No.937 Ultra Sword
ユーザー keymoonkeymoon
提出日時 2019-11-29 22:01:41
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,232 bytes
コンパイル時間 4,404 ms
コンパイル使用メモリ 114,132 KB
実行使用メモリ 44,680 KB
最終ジャッジ日時 2024-11-21 02:19:06
合計ジャッジ時間 19,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
25,564 KB
testcase_01 AC 35 ms
27,412 KB
testcase_02 AC 34 ms
25,312 KB
testcase_03 AC 35 ms
23,216 KB
testcase_04 AC 34 ms
25,568 KB
testcase_05 AC 870 ms
39,672 KB
testcase_06 AC 374 ms
36,648 KB
testcase_07 AC 425 ms
37,240 KB
testcase_08 AC 200 ms
33,388 KB
testcase_09 AC 159 ms
30,464 KB
testcase_10 AC 443 ms
36,152 KB
testcase_11 AC 81 ms
29,460 KB
testcase_12 AC 251 ms
39,036 KB
testcase_13 AC 239 ms
38,920 KB
testcase_14 AC 274 ms
39,772 KB
testcase_15 AC 215 ms
36,192 KB
testcase_16 AC 39 ms
23,860 KB
testcase_17 AC 56 ms
32,764 KB
testcase_18 AC 230 ms
38,504 KB
testcase_19 AC 146 ms
33,708 KB
testcase_20 AC 131 ms
37,584 KB
testcase_21 AC 467 ms
38,460 KB
testcase_22 WA -
testcase_23 AC 37 ms
27,292 KB
testcase_24 AC 1,785 ms
40,940 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
using MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute;
using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions;

public static class P
{
    public static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        var a = Console.ReadLine().Split().Select(long.Parse).ToArray();
        long[] sum = new long[100001];
        for (int i = 0; i < n; i++)
            foreach (var div in Divisors(a[i]).Distinct())
                sum[div] += a[i] - (a[i] / div);

        for (int i = 1; ; i <<= 1)
        {
            if (a.Any(x => (x & i) != 0))
            {
                Console.WriteLine(a.Sum() - sum.Where((_, ind) => (ind & (i - 1)) == 0).Max());
                return;
            }
        }
    }

    static IEnumerable<long> Divisors(long n)
    {
        var max = (int)Ceiling(Sqrt(n));
        for (int i = 1; i <= max; i++)
            if (n % i == 0) { yield return i; yield return n / i; }
    }
}
0