⌨️

[AtCoder]ABC-105|A - AtCoder Crackers

2023/01/25に公開

設問ページ

提出結果

import math


def getIntMap():
    return map(int, input().split())


def main():
    n, k = getIntMap()

    print(math.ceil((n % k) / k))


if __name__ == "__main__":
    main()

Discussion