ComputerScience/Coding Test

C# 백준 1271번: 엄청난 부자2

VirtualDever 2022. 11. 19. 13:13
using System;
using System.Numerics;

class Program {
    static void Main(string[] args) {
        string stringInput = Console.ReadLine();
        string[] arrayStrings = stringInput.Split(' ', StringSplitOptions.None);
        BigInteger N = BigInteger.Parse(arrayStrings[0]);
        BigInteger M = BigInteger.Parse(arrayStrings[1]);

        BigInteger divided = N / M;
        BigInteger remained = N % M;
        
        Console.WriteLine(divided);
        Console.WriteLine(remained);
    }
}

문제 출처

https://www.acmicpc.net/problem/1271

 

1271번: 엄청난 부자2

첫째 줄에는 최백준 조교가 가진 돈 n과 돈을 받으러 온 생명체의 수 m이 주어진다. (1 ≤ m ≤ n ≤ 101000, m과 n은 10진수 정수)

www.acmicpc.net