結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー lllllll88938494lllllll88938494
提出日時 2023-06-15 18:12:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 465 bytes
コンパイル時間 1,340 ms
コンパイル使用メモリ 86,788 KB
実行使用メモリ 71,520 KB
最終ジャッジ日時 2023-09-05 21:42:08
合計ジャッジ時間 4,277 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,220 KB
testcase_01 AC 72 ms
71,304 KB
testcase_02 AC 71 ms
71,152 KB
testcase_03 AC 71 ms
71,256 KB
testcase_04 AC 76 ms
71,064 KB
testcase_05 AC 71 ms
71,104 KB
testcase_06 AC 72 ms
71,356 KB
testcase_07 AC 71 ms
71,256 KB
testcase_08 AC 71 ms
71,204 KB
testcase_09 AC 72 ms
71,320 KB
testcase_10 AC 72 ms
71,224 KB
testcase_11 AC 72 ms
71,236 KB
testcase_12 AC 72 ms
70,944 KB
testcase_13 AC 71 ms
71,484 KB
testcase_14 AC 71 ms
71,224 KB
testcase_15 AC 73 ms
71,516 KB
testcase_16 AC 72 ms
70,944 KB
testcase_17 AC 73 ms
70,996 KB
testcase_18 AC 73 ms
71,108 KB
testcase_19 AC 72 ms
71,104 KB
testcase_20 AC 71 ms
71,080 KB
testcase_21 AC 73 ms
71,100 KB
testcase_22 AC 73 ms
71,256 KB
testcase_23 AC 72 ms
71,500 KB
testcase_24 AC 72 ms
71,212 KB
testcase_25 AC 71 ms
71,232 KB
testcase_26 AC 73 ms
71,256 KB
testcase_27 AC 72 ms
71,272 KB
testcase_28 AC 72 ms
71,180 KB
testcase_29 AC 73 ms
71,100 KB
testcase_30 AC 73 ms
70,940 KB
testcase_31 AC 71 ms
71,228 KB
testcase_32 AC 71 ms
70,944 KB
testcase_33 AC 71 ms
71,520 KB
testcase_34 AC 70 ms
70,952 KB
testcase_35 AC 72 ms
71,432 KB
testcase_36 AC 71 ms
71,304 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