結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー lllllll88938494lllllll88938494
提出日時 2023-06-15 18:12:27
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 465 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 66,484 KB
最終ジャッジ日時 2024-06-23 17:01:07
合計ジャッジ時間 2,828 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,536 KB
testcase_01 AC 37 ms
52,964 KB
testcase_02 AC 37 ms
53,112 KB
testcase_03 AC 36 ms
52,216 KB
testcase_04 AC 36 ms
52,420 KB
testcase_05 RE -
testcase_06 AC 35 ms
53,072 KB
testcase_07 RE -
testcase_08 AC 37 ms
52,396 KB
testcase_09 AC 38 ms
52,936 KB
testcase_10 AC 38 ms
52,600 KB
testcase_11 RE -
testcase_12 AC 37 ms
52,912 KB
testcase_13 AC 37 ms
53,212 KB
testcase_14 AC 37 ms
52,948 KB
testcase_15 AC 37 ms
53,316 KB
testcase_16 AC 36 ms
53,248 KB
testcase_17 AC 36 ms
52,228 KB
testcase_18 AC 36 ms
52,316 KB
testcase_19 AC 36 ms
53,624 KB
testcase_20 AC 36 ms
52,492 KB
testcase_21 AC 37 ms
53,572 KB
testcase_22 AC 37 ms
52,212 KB
testcase_23 AC 36 ms
52,592 KB
testcase_24 AC 37 ms
52,796 KB
testcase_25 AC 36 ms
53,796 KB
testcase_26 AC 36 ms
53,484 KB
testcase_27 RE -
testcase_28 AC 37 ms
52,832 KB
testcase_29 AC 38 ms
53,000 KB
testcase_30 AC 37 ms
52,512 KB
testcase_31 RE -
testcase_32 AC 38 ms
52,900 KB
testcase_33 RE -
testcase_34 AC 37 ms
52,348 KB
testcase_35 AC 37 ms
52,976 KB
testcase_36 AC 38 ms
52,132 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