結果
問題 | No.442 和と積 |
ユーザー | takuwwwo |
提出日時 | 2020-03-31 13:40:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,608 bytes |
コンパイル時間 | 1,409 ms |
コンパイル使用メモリ | 115,776 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 10:02:13 |
合計ジャッジ時間 | 2,100 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <map> #include <unordered_map> #include <queue> #include <set> #include <algorithm> #include <string> #include <math.h> #include <limits.h> #include <stack> #include <complex> #include <stdlib.h> #include <stdio.h> #include <functional> #include <cfloat> #include <math.h> #include <numeric> #include <string.h> #include <sys/time.h> #include <random> #define fs first #define sc second using namespace std; typedef long long ll; typedef unsigned int uint; typedef pair<ll, ll> P; // a と b の最大公約数を返す ll gcd(ll a, ll b) { if (b == 0) return a; else return gcd(b, a % b); } ll lcm(ll a, ll b){ return a / gcd(a, b) * b; } // 素数判定 bool is_prime(ll N) { if (N == 1) return false; for (ll i = 2; i * i <= N; ++i) { if (N % i == 0) return false; } return true; } // 約数列挙 vector<ll> enum_divisors(ll N) { vector<ll> res; for (ll i = 1; i * i <= N; ++i) { if (N % i == 0) { res.push_back(i); if (N/i != i) res.push_back(N/i); } } sort(res.begin(), res.end()); return res; } // 素因数分解 vector<pair<ll, ll>> prime_factorize(ll N){ vector<pair<ll, ll>> res; for(ll i = 2; i * i <= N; i++){ if(N % i != 0) continue; ll ex = 0; while(N % i == 0){ ex++; N /= i; } res.push_back({i, ex}); } if(N != 1) res.push_back({N, 1}); return res; }; int main(){ ll a, b; cin >> a >> b; cout << gcd(a, b) << endl; return 0; }