結果
| 問題 | No.316 もっと刺激的なFizzBuzzをください |
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2020-06-11 00:32:18 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 320 bytes |
| コンパイル時間 | 408 ms |
| コンパイル使用メモリ | 82,440 KB |
| 実行使用メモリ | 54,236 KB |
| 最終ジャッジ日時 | 2024-06-23 20:45:50 |
| 合計ジャッジ時間 | 2,629 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 31 WA * 2 |
ソースコード
import math
def f(a,b):
return (a//math.gcd(a,b))*b
def g(a,b,c):
return f(f(a,b),c)
N=int(input())
a,b,c=map(int,input().split())
if a==b==c:
print(N//a)
elif len({a,b,c})==2:
p,q=a,b
print(N//a+N//b-N//f(a,b))
else:
print(N//a+N//b+N//c-N//f(a,b)-N//f(b,c)-N//f(c,a)+N//g(a,b,c))
Kazun