結果

問題 No.1823 Tricolor Dango
ユーザー れいんれいん
提出日時 2024-12-08 19:08:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 878 bytes
コンパイル時間 2,868 ms
コンパイル使用メモリ 249,556 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-08 19:08:42
合計ジャッジ時間 5,987 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 49 ms
5,248 KB
testcase_12 WA -
testcase_13 AC 47 ms
5,248 KB
testcase_14 AC 52 ms
5,248 KB
testcase_15 AC 41 ms
5,248 KB
testcase_16 AC 18 ms
5,248 KB
testcase_17 AC 26 ms
5,248 KB
testcase_18 AC 50 ms
5,248 KB
testcase_19 AC 132 ms
5,248 KB
testcase_20 AC 49 ms
5,248 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int T;
    cin >> T;
    for (int i = 0; i < T; i++)
    {
        int N;
        cin >> N;

        priority_queue<int> que;
        for (int j = 0; j < N; j++)
        {
            int A;
            cin >> A;
            que.push(A);
        }
        while (que.size() >= 3)
        {
            vector<int> three(3);
            for (int j = 0; j < 3; j++)
            {
                three[j] = que.top();
                que.pop();
            }
            for (int j = 0; j < 3; j++)
            {
                if (three[j] - three[2] >= 1)
                {
                    que.push(three[j] - three[2]);
                }
            }
        }
        if (que.size() == 0)
        {
            cout << "Yes\n";
        }
        else
        {
            cout << "No\n";
        }
    }
}
0