結果

問題 No.442 和と積
ユーザー maimai
提出日時 2016-11-11 22:45:45
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 241 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,664 KB
最終ジャッジ日時 2024-11-25 08:33:56
合計ジャッジ時間 16,286 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 83 ms
18,848 KB
testcase_02 AC 87 ms
24,320 KB
testcase_03 TLE -
testcase_04 AC 76 ms
24,320 KB
testcase_05 AC 78 ms
18,976 KB
testcase_06 AC 77 ms
24,320 KB
testcase_07 AC 93 ms
18,976 KB
testcase_08 AC 76 ms
12,032 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 76 ms
12,160 KB
testcase_12 AC 73 ms
11,904 KB
testcase_13 AC 73 ms
12,032 KB
testcase_14 AC 75 ms
12,160 KB
testcase_15 AC 77 ms
12,032 KB
testcase_16 AC 169 ms
12,160 KB
testcase_17 AC 862 ms
12,032 KB
testcase_18 AC 156 ms
12,032 KB
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def gcd(m,n)
    return 0 if (m==0 || n==0)
    while m != n
        if m>n
            m=m-n
        else
            n=n-m
        end
    end
    return m
end

a,b = gets.split.map(&:to_i)

_s = a+b
_p = a*b

p gcd(gcd(_s,a)*gcd(_s,b),_s)
0