結果

問題 No.29 パワーアップ
ユーザー MisterMister
提出日時 2020-03-31 16:15:23
言語 C++17(clang Beta)
(clang 13.0.0 + boost 1.78.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 502 bytes
コンパイル時間 475 ms
使用メモリ 3,500 KB
最終ジャッジ日時 2023-01-06 21:26:01
合計ジャッジ時間 2,417 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 1 ms
3,500 KB
testcase_01 AC 1 ms
3,368 KB
testcase_02 AC 1 ms
3,388 KB
testcase_03 AC 1 ms
3,396 KB
testcase_04 AC 2 ms
3,448 KB
testcase_05 AC 1 ms
3,392 KB
testcase_06 AC 1 ms
3,464 KB
testcase_07 AC 2 ms
3,412 KB
testcase_08 AC 1 ms
3,332 KB
testcase_09 AC 2 ms
3,328 KB
testcase_10 AC 2 ms
3,404 KB
testcase_11 AC 1 ms
3,440 KB
testcase_12 AC 2 ms
3,364 KB
testcase_13 AC 2 ms
3,400 KB
testcase_14 AC 2 ms
3,372 KB
testcase_15 AC 2 ms
3,408 KB
testcase_16 AC 1 ms
3,364 KB
testcase_17 AC 1 ms
3,396 KB
testcase_18 AC 2 ms
3,392 KB
testcase_19 AC 2 ms
3,436 KB
testcase_20 AC 2 ms
3,464 KB
testcase_21 AC 2 ms
3,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

void solve() {
    std::vector<int> cnt(10, 0);

    int n;
    std::cin >> n;
    n *= 3;

    while (n--) {
        int x;
        std::cin >> x;
        ++cnt[--x];
    }

    int ans = 0, tmp = 0;
    for (auto c : cnt) {
        ans += c / 2;
        tmp += c %= 2;
    }

    std::cout << ans + tmp / 4 << std::endl;
}

int main() {
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0