結果
| 問題 |
No.443 GCD of Permutation
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-11-21 16:51:36 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 889 bytes |
| コンパイル時間 | 734 ms |
| コンパイル使用メモリ | 85,968 KB |
| 最終ジャッジ日時 | 2024-11-14 21:51:18 |
| 合計ジャッジ時間 | 1,636 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:23:20: error: variable 'std::array<int, 10> v' has initializer but incomplete type
23 | array<int, 10> v{};
| ^
ソースコード
#include <limits>
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>
static const int MOD = 1000000007;
using ll = long long;
using u32 = uint32_t;
using namespace std;
template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;
int main() {
string s;
cin >> s;
array<int, 10> v{};
for (auto &&i : s) {
v[i-'0']++;
}
int ans = 0;
for (int i = 0; i < 10; ++i) {
for (int j = i+1; j < 10; ++j) {
if(v[i] && v[j]) ans = __gcd(ans, j-i);
}
}
if(ans == 0){
cout << s << "\n";
return 0;
}
ans *= 9;
int val = 0;
for (int i = s.size()-1; i >= 0; --i) {
val = (val*10+s[i]-'0')%ans;
}
cout << __gcd(ans, val) << "\n";
return 0;
}