結果

問題 No.311 z in FizzBuzzString
ユーザー alchemin
提出日時 2019-10-01 17:44:04
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 102 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-24 22:25:04
合計ジャッジ時間 963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())
d3 = math.floor(n/3)
d5 = math.floor(n/5)
ans = (d3 + d5) * 2
print(ans)
0