結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー brthyyjpbrthyyjp
提出日時 2020-04-26 06:17:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 1,000 ms
コード長 404 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 56,980 KB
最終ジャッジ日時 2024-11-15 17:58:44
合計ジャッジ時間 3,341 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,540 KB
testcase_01 AC 46 ms
55,984 KB
testcase_02 AC 47 ms
56,332 KB
testcase_03 AC 45 ms
55,736 KB
testcase_04 AC 45 ms
55,500 KB
testcase_05 AC 45 ms
55,148 KB
testcase_06 AC 46 ms
55,704 KB
testcase_07 AC 48 ms
55,788 KB
testcase_08 AC 47 ms
55,312 KB
testcase_09 AC 46 ms
55,576 KB
testcase_10 AC 47 ms
55,568 KB
testcase_11 AC 47 ms
54,856 KB
testcase_12 AC 47 ms
54,732 KB
testcase_13 AC 45 ms
55,204 KB
testcase_14 AC 45 ms
55,508 KB
testcase_15 AC 45 ms
55,148 KB
testcase_16 AC 47 ms
55,204 KB
testcase_17 AC 46 ms
55,888 KB
testcase_18 AC 47 ms
56,036 KB
testcase_19 AC 46 ms
55,580 KB
testcase_20 AC 46 ms
55,756 KB
testcase_21 AC 46 ms
56,716 KB
testcase_22 AC 46 ms
55,512 KB
testcase_23 AC 46 ms
55,504 KB
testcase_24 AC 46 ms
55,952 KB
testcase_25 AC 46 ms
55,348 KB
testcase_26 AC 46 ms
55,792 KB
testcase_27 AC 47 ms
55,604 KB
testcase_28 AC 47 ms
56,328 KB
testcase_29 AC 46 ms
56,196 KB
testcase_30 AC 45 ms
55,128 KB
testcase_31 AC 45 ms
55,220 KB
testcase_32 AC 46 ms
55,244 KB
testcase_33 AC 46 ms
54,676 KB
testcase_34 AC 45 ms
55,408 KB
testcase_35 AC 44 ms
54,856 KB
testcase_36 AC 47 ms
56,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a, b, c = map(int, input().split())

#import fractions
import math
from functools import reduce
def lcm_base(x, y):
  #return (x * y) // fractions.gcd(x, y)
  return (x * y) // math.gcd(x, y)

def lcm_list(numbers):
  return reduce(lcm_base, numbers, 1)

ans = n//a + n//b + n//c
ans -= n//lcm_base(a, b) + n//lcm_base(b, c) + n//lcm_base(c, a)
ans += n//lcm_list([a, b, c])

print(ans)
0