結果
問題 | No.443 GCD of Permutation |
ユーザー | anubhavchk007 |
提出日時 | 2024-01-12 04:53:45 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 759 ms / 1,000 ms |
コード長 | 1,197 bytes |
コンパイル時間 | 3,308 ms |
コンパイル使用メモリ | 164,924 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-27 20:44:24 |
合計ジャッジ時間 | 6,385 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 24 ms
6,940 KB |
testcase_16 | AC | 4 ms
6,940 KB |
testcase_17 | AC | 13 ms
6,944 KB |
testcase_18 | AC | 504 ms
6,940 KB |
testcase_19 | AC | 23 ms
6,940 KB |
testcase_20 | AC | 536 ms
6,944 KB |
testcase_21 | AC | 73 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,940 KB |
testcase_25 | AC | 36 ms
6,940 KB |
testcase_26 | AC | 33 ms
6,940 KB |
testcase_27 | AC | 29 ms
6,944 KB |
testcase_28 | AC | 36 ms
6,944 KB |
testcase_29 | AC | 36 ms
6,944 KB |
testcase_30 | AC | 37 ms
6,944 KB |
testcase_31 | AC | 759 ms
6,940 KB |
ソースコード
#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; }