結果

問題 No.1462 最弱WEAKER
ユーザー kimiyukikimiyuki
提出日時 2021-04-02 21:33:35
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 880 bytes
コンパイル時間 2,399 ms
コンパイル使用メモリ 195,364 KB
最終ジャッジ日時 2025-01-20 08:25:12
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, n) for (int i = 0; (i) < (int)(n); ++(i))
#define REP3(i, m, n) for (int i = (m); (i) < (int)(n); ++(i))
#define REP_R(i, n) for (int i = (int)(n)-1; (i) >= 0; --(i))
#define REP3R(i, m, n) for (int i = (int)(n)-1; (i) >= (int)(m); --(i))
#define ALL(x) ::std::begin(x), ::std::end(x)
using namespace std;

const string YES = "YES";
const string NO = "NO";

bool solve(int64_t n) {
    vector<int> digits;
    while (n) {
        digits.push_back(n % 3);
        n /= 3;
    }
    return accumulate(ALL(digits), 0) % 2 == 0;
}

// generated by oj-template v4.7.2 (https://github.com/online-judge-tools/template-generator)
int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    constexpr char endl = '\n';
    int64_t N;
    cin >> N;
    auto ans = solve(N);
    cout << (ans ? YES : NO) << endl;
    return 0;
}
0