結果
問題 | No.442 和と積 |
ユーザー | ouoz1V |
提出日時 | 2016-11-11 23:40:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 519 bytes |
コンパイル時間 | 438 ms |
コンパイル使用メモリ | 54,128 KB |
実行使用メモリ | 16,840 KB |
最終ジャッジ日時 | 2024-11-25 09:43:50 |
合計ジャッジ時間 | 25,191 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,632 KB |
testcase_01 | AC | 1 ms
9,892 KB |
testcase_02 | AC | 2 ms
10,020 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 1 ms
13,632 KB |
testcase_05 | AC | 2 ms
9,888 KB |
testcase_06 | AC | 1 ms
13,636 KB |
testcase_07 | TLE | - |
testcase_08 | AC | 2 ms
13,640 KB |
testcase_09 | AC | 2 ms
10,020 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | WA | - |
ソースコード
#include<iostream> #include<cstdio> using namespace std; unsigned long long int gcd(unsigned long long int a,unsigned long long int b){ while(a!=b){ if(a>b) a-=b; else b-=a; } return a; } int main(){ unsigned long long int a,b; unsigned long long int x; cin>>a>>b; unsigned long long int aplsb,amltb; if(a==1||b==1){ cout<<1<<endl; return 0; } x=gcd(a,b); aplsb=(a+b)/x; amltb=a/x*b; cout<<x*gcd(aplsb,amltb)<<endl; return 0; }