結果

問題 No.1594 Three Classes
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-08-23 09:25:03
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 1,234 bytes
コンパイル時間 1,527 ms
コンパイル使用メモリ 115,116 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-06-01 07:01:00
合計ジャッジ時間 5,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
23,296 KB
testcase_01 AC 27 ms
19,584 KB
testcase_02 AC 28 ms
19,328 KB
testcase_03 AC 88 ms
23,296 KB
testcase_04 AC 326 ms
23,296 KB
testcase_05 AC 328 ms
23,296 KB
testcase_06 AC 28 ms
19,456 KB
testcase_07 AC 51 ms
23,296 KB
testcase_08 AC 329 ms
23,168 KB
testcase_09 AC 326 ms
23,424 KB
testcase_10 AC 326 ms
23,552 KB
testcase_11 AC 328 ms
23,552 KB
testcase_12 AC 328 ms
23,424 KB
testcase_13 AC 29 ms
19,328 KB
testcase_14 AC 206 ms
23,168 KB
testcase_15 AC 137 ms
23,296 KB
testcase_16 AC 64 ms
23,296 KB
testcase_17 AC 63 ms
23,424 KB
testcase_18 AC 27 ms
19,328 KB
testcase_19 AC 29 ms
19,712 KB
testcase_20 AC 32 ms
20,736 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.Generic;
using System.Linq;
using System.Numerics;

namespace yukicoder
{
    public class Program
    {
        public static void Main()
        {
            var n = int.Parse(Console.ReadLine());
            var e = Console.ReadLine().Split().Select(x => long.Parse(x)).ToArray();
            var c = true;
            for(var i = 0; i < (int)Math.Pow(3, n - 1); i++)
            {
                var sum = new long[3];
                var a = "";
                var k = i;
                while (k >= 3)
                {
                    a += (k % 3).ToString();
                    k /= 3;
                }
                a = k + a;
                while (a.Length < n)
                {
                    a = "0" + a;
                }
                for(var j = 0; j < n; j++)
                {
                    sum[a[j] - '0'] += e[j];
                }
                if (sum[0] == sum[1] && sum[1] == sum[2])
                {
                    Console.WriteLine("Yes");
                    c = false;
                    break;
                }
            }
            if (c)
            {
                Console.WriteLine("No");
            }
        }
    }
}
0