結果
問題 | No.1594 Three Classes |
ユーザー | bluemegane |
提出日時 | 2021-07-10 10:53:00 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,225 bytes |
コンパイル時間 | 889 ms |
コンパイル使用メモリ | 107,136 KB |
実行使用メモリ | 85,072 KB |
最終ジャッジ日時 | 2024-07-02 01:49:58 |
合計ジャッジ時間 | 4,425 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
18,560 KB |
testcase_01 | AC | 27 ms
18,688 KB |
testcase_02 | AC | 27 ms
18,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 25 ms
18,560 KB |
testcase_05 | AC | 26 ms
18,432 KB |
testcase_06 | AC | 363 ms
80,040 KB |
testcase_07 | WA | - |
testcase_08 | AC | 444 ms
84,812 KB |
testcase_09 | AC | 25 ms
18,688 KB |
testcase_10 | AC | 26 ms
18,688 KB |
testcase_11 | AC | 25 ms
18,688 KB |
testcase_12 | AC | 441 ms
85,072 KB |
testcase_13 | AC | 27 ms
18,688 KB |
testcase_14 | AC | 367 ms
78,652 KB |
testcase_15 | AC | 366 ms
78,784 KB |
testcase_16 | WA | - |
testcase_17 | AC | 361 ms
78,676 KB |
testcase_18 | AC | 27 ms
18,816 KB |
testcase_19 | AC | 25 ms
18,560 KB |
testcase_20 | AC | 34 ms
21,516 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System.Linq; using System.Collections.Generic; using System; public class P { public int t { get; set; } public string s { get; set; } } 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); if (a.Sum() % n != 0) Console.WriteLine("No"); else getAns(n, a); } static void getAns(int n, int[] a) { var q = new Queue<P>(); q.Enqueue(new P { s = "", t = 0 }); while (q.Count() > 0) { var w = q.Dequeue(); if (w.t == n ) { if (check(w.s, n, a)) { Console.WriteLine("Yes"); return; } else continue; } for (int i = 0; i < 3; i++) { q.Enqueue(new P { s = w.s + i.ToString(), t = w.t + 1 }); } } Console.WriteLine("No"); } static bool check(string s, int n, int[] a) { var sum = new int[3]; for (int i = 0; i < n; i++) sum[s[i] - '0'] += a[i]; return (sum[0] == sum[1] && sum[1] == sum[2]); } }