結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー yansi819yansi819
提出日時 2024-05-20 21:26:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 252 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-05-20 21:26:35
合計ジャッジ時間 3,019 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,124 KB
testcase_01 AC 31 ms
53,340 KB
testcase_02 AC 31 ms
53,940 KB
testcase_03 AC 32 ms
53,452 KB
testcase_04 AC 34 ms
52,324 KB
testcase_05 AC 32 ms
53,552 KB
testcase_06 AC 32 ms
52,320 KB
testcase_07 AC 35 ms
52,820 KB
testcase_08 AC 32 ms
52,284 KB
testcase_09 AC 32 ms
53,268 KB
testcase_10 AC 33 ms
52,292 KB
testcase_11 AC 34 ms
52,872 KB
testcase_12 AC 34 ms
53,328 KB
testcase_13 AC 45 ms
54,016 KB
testcase_14 AC 32 ms
52,912 KB
testcase_15 AC 32 ms
52,380 KB
testcase_16 AC 32 ms
53,216 KB
testcase_17 AC 31 ms
53,544 KB
testcase_18 AC 32 ms
52,588 KB
testcase_19 AC 31 ms
53,532 KB
testcase_20 AC 32 ms
52,656 KB
testcase_21 AC 32 ms
52,364 KB
testcase_22 AC 32 ms
52,692 KB
testcase_23 AC 32 ms
53,672 KB
testcase_24 AC 32 ms
52,988 KB
testcase_25 AC 31 ms
53,132 KB
testcase_26 AC 31 ms
53,700 KB
testcase_27 AC 31 ms
52,824 KB
testcase_28 AC 34 ms
52,808 KB
testcase_29 AC 32 ms
53,952 KB
testcase_30 AC 32 ms
52,528 KB
testcase_31 AC 34 ms
53,016 KB
testcase_32 AC 32 ms
52,412 KB
testcase_33 AC 33 ms
52,736 KB
testcase_34 AC 32 ms
53,624 KB
testcase_35 AC 32 ms
52,432 KB
testcase_36 AC 32 ms
52,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
def lcm(a, b):
    return a // gcd(a, b) * b

N = int(input())
a, b, c = map(int, input().split())
l1 = lcm(a, b)
l2 = lcm(b, c)
l3 = lcm(c, a)
l4 = lcm(l1, c)
print(N // a + N // b + N // c - N // l1 - N // l2 - N // l3 + N // l4)
0