結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー 小指が強い人小指が強い人
提出日時 2015-12-09 00:46:09
言語 Ruby
(3.3.0)
結果
AC  
実行時間 80 ms / 1,000 ms
コード長 739 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 11,404 KB
実行使用メモリ 15,392 KB
最終ジャッジ日時 2023-08-13 15:34:59
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
15,124 KB
testcase_01 AC 77 ms
15,124 KB
testcase_02 AC 78 ms
15,128 KB
testcase_03 AC 79 ms
15,084 KB
testcase_04 AC 79 ms
15,188 KB
testcase_05 AC 78 ms
15,340 KB
testcase_06 AC 78 ms
15,352 KB
testcase_07 AC 78 ms
15,268 KB
testcase_08 AC 78 ms
15,084 KB
testcase_09 AC 78 ms
15,240 KB
testcase_10 AC 79 ms
15,212 KB
testcase_11 AC 79 ms
15,032 KB
testcase_12 AC 79 ms
15,280 KB
testcase_13 AC 80 ms
15,324 KB
testcase_14 AC 80 ms
15,144 KB
testcase_15 AC 80 ms
15,112 KB
testcase_16 AC 80 ms
15,172 KB
testcase_17 AC 80 ms
15,032 KB
testcase_18 AC 79 ms
15,080 KB
testcase_19 AC 79 ms
15,132 KB
testcase_20 AC 79 ms
15,084 KB
testcase_21 AC 79 ms
15,324 KB
testcase_22 AC 80 ms
15,392 KB
testcase_23 AC 80 ms
15,188 KB
testcase_24 AC 80 ms
15,164 KB
testcase_25 AC 79 ms
15,176 KB
testcase_26 AC 78 ms
15,280 KB
testcase_27 AC 78 ms
15,284 KB
testcase_28 AC 79 ms
15,176 KB
testcase_29 AC 79 ms
15,116 KB
testcase_30 AC 79 ms
15,384 KB
testcase_31 AC 79 ms
15,120 KB
testcase_32 AC 79 ms
15,220 KB
testcase_33 AC 79 ms
15,144 KB
testcase_34 AC 78 ms
15,144 KB
testcase_35 AC 78 ms
15,292 KB
testcase_36 AC 79 ms
15,172 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
a,b,c = gets.split.map(&:to_i)
ab1 = a.gcd(b)
bc1 = b.gcd(c)
ca1 = c.gcd(a)
ab2 = a * b / ab1
bc2 = b * c / bc1
ca2 = c * a / ca1
d = 2
q = 1
sa = a
sb = b
sc = c
while d <= sa || d <= sb || d <= sc do
    ad = (sa % d) == 0
    bd = (sb % d) == 0
    cd = (sc % d) == 0
    if ad && bd && cd
        sa /= d
        sb /= d
        sc /= d
        q *= d
        next
    end
    if ad && bd
        sa /= d
        sb /= d
        q *= d
        next
    end
    if bd && cd
        sb /= d
        sc /= d
        q *= d
        next
    end
    if cd && ad
        sc /= d
        sa /= d
        q *= d
        next
    end
    d += 1
end
puts n / a + n / b + n / c - n / ab2 - n / bc2 - n / ca2 + n / (q * sa * sb * sc)
0