반응형
[ 10430번 ]
https://www.acmicpc.net/problem/10430
[ C# ]
string s = Console.ReadLine();
string[] ss = s.Split();
int a = int.Parse(ss[0]);
int b = int.Parse(ss[1]);
int c = int.Parse(ss[2]);
Console.WriteLine((a+b)%c);
Console.WriteLine(((a%c)+(b%c))%c);
Console.WriteLine((a*b)%c);
Console.WriteLine(((a%c) * (b%c)) % c);
[ Python ]
a, b, c = map(int, input().split())
print((a+b)%c)
print(((a%c)+(b%c))%c)
print((a*b)%c)
print(((a%c) * (b%c)) % c)
[ 2588번 ]
https://www.acmicpc.net/problem/2588
[ C# ]
string a = Console.ReadLine();
string b = Console.ReadLine();
char[] bs = b.ToCharArray();
int[] nums = new int[bs.Length];
int aa = int.Parse(a);
for (int i = nums.Length - 1; i > -1; i--)
{
nums[i] = int.Parse(bs[i].ToString());
Console.WriteLine(aa * nums[i]);
}
Console.WriteLine(aa * (nums[2]) +
aa * (nums[1] * 10) + aa * (nums[0] * 100));
[ Python ]
a = int(input())
b = input()
print(a * int(b[2]))
print(a * int(b[1]))
print(a * int(b[0]))
print(a * int(b))
반응형
'코딩 공부 > 백준 코딩테스트' 카테고리의 다른 글
[백준 코딩테스트] 1330번, 9498번 | C, C#, Python (0) | 2023.04.05 |
---|---|
[백준 코딩테스트] 11382번, 10171번, 10172번 | C#, Python (0) | 2023.04.04 |
[백준 코딩테스트] 10926번, 18108번 | C#, Python (0) | 2023.04.04 |
[백준 코딩테스트] 1008번, 10869번 | C#, Python (0) | 2023.04.04 |
[백준 코딩테스트] 1000번, 1001번, 10998번 | C#, Python (0) | 2023.04.03 |