Submission #66498


ソースコード

ステータス

項目 データ
問題 1409 - Prime Combination
ユーザー名 ei1929
投稿日時 2021-05-06 17:22:27
言語 C++17
状態 Compile Error
得点 0
ソースコード長 927 Byte
最大実行時間 -
最大メモリ使用量

コンパイルメッセージ

./Main.cpp: In function ‘int main()’:
./Main.cpp:19:16: error: call of overloaded ‘gcd(long long int&, long long int&)’ is ambiguous
     if(gcd(k, a) == 1) {
                ^
./Main.cpp:8:38: note: candidate: ‘A gcd(A, B) [with A = long long int; B = long long int]’
 template <class A, class B> inline A gcd(A a, B b) { if (a%b == 0) {return (b);} return (gcd(b, a%b)); }
                                      ^~~
In file included from /usr/local/gcc-8.2.0/include/c++/8.2.0/x86_64-pc-linux-gnu/bits/stdc++.h:84,
                 from ./Main.cpp:1:
/usr/local/gcc-8.2.0/include/c++/8.2.0/numeric:132:5: note: candidate: ‘constexpr std::common_type_t<_Mn, _Nn> std::gcd(_Mn, _Nn) [with _Mn = long long int; _Nn = long long int; std::common_type_t<_Mn, _Nn> = long long int]’
     gcd(_Mn __m, _Nn __n)
     ^~~

セット

セット 得点 Cases

テストケース

ファイル名 状態 実行時間 メモリ使用量 #