結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー lllllll88938494lllllll88938494
提出日時 2023-06-15 18:12:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 465 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 54,004 KB
最終ジャッジ日時 2024-06-23 17:01:31
合計ジャッジ時間 2,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,120 KB
testcase_01 AC 37 ms
52,408 KB
testcase_02 AC 37 ms
52,488 KB
testcase_03 AC 35 ms
54,004 KB
testcase_04 AC 37 ms
52,396 KB
testcase_05 AC 36 ms
52,440 KB
testcase_06 AC 35 ms
52,492 KB
testcase_07 AC 35 ms
52,132 KB
testcase_08 AC 36 ms
52,820 KB
testcase_09 AC 37 ms
52,476 KB
testcase_10 AC 38 ms
53,016 KB
testcase_11 AC 39 ms
52,212 KB
testcase_12 AC 38 ms
53,812 KB
testcase_13 AC 39 ms
52,808 KB
testcase_14 AC 38 ms
53,164 KB
testcase_15 AC 37 ms
52,992 KB
testcase_16 AC 39 ms
52,288 KB
testcase_17 AC 39 ms
52,324 KB
testcase_18 AC 39 ms
53,344 KB
testcase_19 AC 37 ms
52,668 KB
testcase_20 AC 35 ms
52,352 KB
testcase_21 AC 38 ms
52,608 KB
testcase_22 AC 36 ms
52,152 KB
testcase_23 AC 37 ms
52,140 KB
testcase_24 AC 37 ms
53,140 KB
testcase_25 AC 37 ms
53,680 KB
testcase_26 AC 38 ms
52,268 KB
testcase_27 AC 38 ms
52,612 KB
testcase_28 AC 37 ms
52,764 KB
testcase_29 AC 36 ms
52,916 KB
testcase_30 AC 38 ms
53,860 KB
testcase_31 AC 38 ms
52,552 KB
testcase_32 AC 38 ms
52,464 KB
testcase_33 AC 38 ms
53,164 KB
testcase_34 AC 38 ms
52,404 KB
testcase_35 AC 39 ms
53,660 KB
testcase_36 AC 37 ms
52,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil,floor,sqrt,gcd,factorial 
def  lcm(a,b):
    return a*b // gcd(a,b)

n=int(input())
a,b,c = map(int,input().split())
z = [a]
if b%a:
    z.append(b)
if c%a and c%b:
    z.append(c)

if len(z) == 1:
    print(n//z[0])
elif len(z) == 2:
    a=z[0]
    b=z[1]
    print(n//a + n//b  - n//(lcm(a,b)))
else:
    a=z[0]
    b=z[1]
    c=z[2]
    print(n//a + n//b + n//c - n//(lcm(a,b)) - n//(lcm(a,c)) - n//(lcm(b,c)) + n//(lcm(lcm(a,b),c)))
    

0