結果

問題 No.443 GCD of Permutation
ユーザー anubhavchk007anubhavchk007
提出日時 2024-01-12 04:53:45
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 828 ms / 1,000 ms
コード長 1,197 bytes
コンパイル時間 6,279 ms
コンパイル使用メモリ 160,948 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-01-12 04:53:55
合計ジャッジ時間 10,116 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 1 ms
6,676 KB
testcase_04 AC 2 ms
6,676 KB
testcase_05 AC 2 ms
6,676 KB
testcase_06 AC 1 ms
6,676 KB
testcase_07 AC 2 ms
6,676 KB
testcase_08 AC 2 ms
6,676 KB
testcase_09 AC 1 ms
6,676 KB
testcase_10 AC 2 ms
6,676 KB
testcase_11 AC 2 ms
6,676 KB
testcase_12 AC 2 ms
6,676 KB
testcase_13 AC 2 ms
6,676 KB
testcase_14 AC 2 ms
6,676 KB
testcase_15 AC 28 ms
6,676 KB
testcase_16 AC 4 ms
6,676 KB
testcase_17 AC 14 ms
6,676 KB
testcase_18 AC 578 ms
6,676 KB
testcase_19 AC 26 ms
6,676 KB
testcase_20 AC 577 ms
6,676 KB
testcase_21 AC 81 ms
6,676 KB
testcase_22 AC 1 ms
6,676 KB
testcase_23 AC 2 ms
6,676 KB
testcase_24 AC 1 ms
6,676 KB
testcase_25 AC 36 ms
6,676 KB
testcase_26 AC 33 ms
6,676 KB
testcase_27 AC 33 ms
6,676 KB
testcase_28 AC 42 ms
6,676 KB
testcase_29 AC 40 ms
6,676 KB
testcase_30 AC 40 ms
6,676 KB
testcase_31 AC 828 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long

bool divisible(string& s, int x) {
    int rem = 0;
    for (auto c : s) {
        rem = (rem * 10 + c - '0') % x;
    }
    return rem == 0;
}

void solve(){
    string s;
    cin >> s;
    set<int> st(s.begin(), s.end());
    if (st.size() == 1) {
        cout << s << "\n";
        return;
    }
    int g = -1;
    for (auto i : s) {
        for (auto j : s) {
            if (i < j) {
                if (g == -1) g = 9LL * (j - i);
                else g = __gcd(g, 9LL * (j - i));
            }
        }
    }
    if (g == -1) {
        cout << s << "\n";
        return;
    }
    vector<int> divisors;
    for (int i = 1; i * i <= g; i++) {
        if (g % i == 0) {
            divisors.push_back(i);
            if (i != g / i)
                divisors.push_back(g / i);
        }
    }
    sort(divisors.rbegin(), divisors.rend());
    for (auto x : divisors) {
        if (divisible(s, x)) {
            cout << x << "\n";
            return;
        }
    }
}

signed main(){
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    
    int T = 1;
    // cin >> T;
    while(T--) solve();

    return 0;
}
0