結果

問題 No.2297 Best Grouping
ユーザー take000take000
提出日時 2023-05-12 21:22:03
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 1,914 ms
コンパイル使用メモリ 199,020 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-28 17:06:21
合計ジャッジ時間 2,688 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < n; ++i)
typedef long long ll;
using namespace std;

int main() {
    cin.tie(0)->sync_with_stdio(0);

    int N;
    cin >> N;

    if (N % 3 == 0) cout << 0;
    if ((N - 2) % 3 == 0) cout << 1;
    if ((N - 4) % 3 == 0) cout << 2;
    cout << "\n";

    return 0;
}
0