結果
問題 | No.442 和と積 |
ユーザー | aaaa3215 |
提出日時 | 2018-05-23 17:54:51 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 576 bytes |
コンパイル時間 | 1,550 ms |
コンパイル使用メモリ | 28,288 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 16:18:51 |
合計ジャッジ時間 | 818 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#include<stdio.h> long long int gcd(long long int C, long long int D) { double tmp; double div1; long long int div2, r; div1 = C / D; div2 = div1; r = C % D; while (r != 0) { div1 /= r; div2 = div1; r = div2 % r; if (div2 == 0) { return 1; } } return div2; } int main(void) { long long int A, B; long long int a, b, ans; scanf("%lld", &A); scanf("%lld", &B); a = gcd(A + B, A); b = gcd(A + B, B); if (a*b >= A + B) { ans = gcd(a*b, A + B); } else { ans = gcd(A + B, a*b); } printf("%lld\n", ans); return 0; }