結果

問題 No.1644 Eight Digits
ユーザー ooooobaoooooba
提出日時 2021-08-15 20:16:02
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 5 ms / 1,000 ms
コード長 579 bytes
コンパイル時間 1,264 ms
コンパイル使用メモリ 113,468 KB
最終ジャッジ日時 2025-01-23 22:32:31
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <cmath>
#include <cstdio>
#include <deque>
#include <iomanip>
#include <iostream>
#include <numeric>
#include <optional>
#include <queue>
#include <set>
#include <stack>
#include <unordered_map>
#include <unordered_set>
#include <vector>

using namespace std; // NOLINT

int main() {
    int32_t k;
    cin >> k;
    int32_t ans = 0;
    string s = "12345678";
    do {
        auto t = stoi(s);
        if (t % k == 0)
            ++ans;
    } while (next_permutation(s.begin(), s.end()));
    cout << ans << endl;
    return 0;
}
0