結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー noriocnorioc
提出日時 2024-10-14 05:16:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 199 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 54,000 KB
最終ジャッジ日時 2024-10-14 05:16:28
合計ジャッジ時間 2,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,136 KB
testcase_01 AC 36 ms
53,156 KB
testcase_02 AC 37 ms
51,876 KB
testcase_03 AC 37 ms
53,428 KB
testcase_04 AC 37 ms
52,980 KB
testcase_05 AC 36 ms
52,620 KB
testcase_06 AC 36 ms
53,024 KB
testcase_07 AC 37 ms
53,376 KB
testcase_08 AC 37 ms
52,192 KB
testcase_09 AC 37 ms
52,624 KB
testcase_10 AC 37 ms
52,976 KB
testcase_11 AC 37 ms
52,560 KB
testcase_12 AC 37 ms
52,396 KB
testcase_13 AC 36 ms
52,672 KB
testcase_14 AC 37 ms
52,460 KB
testcase_15 AC 37 ms
51,984 KB
testcase_16 AC 37 ms
53,292 KB
testcase_17 AC 37 ms
53,748 KB
testcase_18 AC 37 ms
53,500 KB
testcase_19 AC 37 ms
53,080 KB
testcase_20 AC 37 ms
53,388 KB
testcase_21 AC 37 ms
52,468 KB
testcase_22 AC 37 ms
53,944 KB
testcase_23 AC 37 ms
52,888 KB
testcase_24 AC 37 ms
52,480 KB
testcase_25 AC 36 ms
52,276 KB
testcase_26 AC 37 ms
51,824 KB
testcase_27 AC 38 ms
52,376 KB
testcase_28 AC 37 ms
54,000 KB
testcase_29 AC 36 ms
53,232 KB
testcase_30 AC 37 ms
52,596 KB
testcase_31 AC 37 ms
53,136 KB
testcase_32 AC 36 ms
53,216 KB
testcase_33 AC 39 ms
53,252 KB
testcase_34 AC 36 ms
52,884 KB
testcase_35 AC 36 ms
52,832 KB
testcase_36 AC 37 ms
52,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd, lcm

N = int(input())
A, B, C = map(int, input().split())

x = N//A + N//B + N//C
y = N//lcm(A, B) + N//lcm(B, C) + N//lcm(C, A)
z = N//lcm(A, B, C)

ans = x - y + z
print(ans)
0