⌨️[AtCoder]ABC-226|A - Round decimals2023/05/17に公開・約200字ツイートPythonAtCoder#abctech 設問ページ 🔗ABC-226 A - Round decimals 提出結果 import math def getFloat(): return float(input()) def main(): x = getFloat() print(math.floor(x + 0.5)) if __name__ == "__main__": main() ツイートDiscussionログインするとコメントできますLogin
Discussion