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
'ComputerScience > Coding Test' 카테고리의 다른 글
C# 백준 25372번: 성택이의 은밀한 비밀번호 (0) | 2022.11.19 |
---|---|
C# 백준 2338번: 긴자리 계산 (2) | 2022.11.19 |
C# 백준 10757번: 큰 수 A + B (0) | 2022.11.19 |
백준 2420번: 사파리월드 (0) | 2022.11.12 |
백준 11382번: 꼬마 정민 (0) | 2022.11.12 |