結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,676 KB
testcase_01 AC 1 ms
6,676 KB
testcase_02 AC 1 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 AC 2 ms
6,676 KB
testcase_05 AC 1 ms
6,676 KB
testcase_06 AC 1 ms
6,676 KB
testcase_07 AC 2 ms
6,676 KB
testcase_08 AC 1 ms
6,676 KB
testcase_09 AC 1 ms
6,676 KB
testcase_10 AC 2 ms
6,676 KB
testcase_11 AC 1 ms
6,676 KB
testcase_12 AC 1 ms
6,676 KB
testcase_13 AC 1 ms
6,676 KB
testcase_14 AC 2 ms
6,676 KB
testcase_15 AC 27 ms
6,676 KB
testcase_16 AC 4 ms
6,676 KB
testcase_17 AC 14 ms
6,676 KB
testcase_18 AC 547 ms
6,676 KB
testcase_19 AC 26 ms
6,676 KB
testcase_20 AC 598 ms
6,676 KB
testcase_21 AC 80 ms
6,676 KB
testcase_22 AC 2 ms
6,676 KB
testcase_23 AC 2 ms
6,676 KB
testcase_24 AC 2 ms
6,676 KB
testcase_25 AC 37 ms
6,676 KB
testcase_26 AC 33 ms
6,676 KB
testcase_27 AC 33 ms
6,676 KB
testcase_28 AC 41 ms
6,676 KB
testcase_29 AC 40 ms
6,676 KB
testcase_30 AC 40 ms
6,676 KB
testcase_31 AC 852 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 = 0;
    for (auto i : s) {
        for (auto j : s) {
            if (i < j) {
                g = __gcd(g, 9LL * (j - i));
            }
        }
    }
    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