結果
| 問題 | No.316 もっと刺激的なFizzBuzzをください |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-03-01 14:10:38 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 302 bytes |
| コンパイル時間 | 244 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,392 KB |
| 最終ジャッジ日時 | 2024-10-13 20:37:52 |
| 合計ジャッジ時間 | 3,002 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 4 |
| other | RE * 33 |
ソースコード
import fractions
from functools import reduce
def lcm(*n):
return reduce(lambda a, b: a * b // fractions.gcd(a, b), n)
N = int(input())
A, B, C = map(int, input().split())
ans = N // A + N // B + N // C
ans -= N // lcm(A, B) + N // lcm(B, C) + N // lcm(C, A)
ans += N // lcm(A, B, C)
print(ans)