Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- UE5
- Programming
- Tutorial
- Algorithm
- loop
- 오류
- Basic
- String
- Unity
- Unreal Engine 5
- 백준
- DP
- github
- parameter
- 재귀
- 문제풀이
- dynamic
- 프로그래밍
- 시작해요 언리얼 2022
- 기초
- Class
- dfs
- python
- Material
- guide
- c++
- w3school
- 파이썬
- W3Schools
- C#
Archives
- Today
- Total
목록10430 (1)
행복한 개구리
Python A, B, C = map(int, input().split()) result = [(A+B)%C, ((A%C)+(B%C))%C, (A*B)%C, ((A%C)*(B%C))%C] for i in result: print(i) C# using System.Collections; string line = Console.ReadLine(); string[] nums = line.Split(" "); int A, B, C; A = int.Parse(nums[0]); B = int.Parse(nums[1]); C = int.Parse(nums[2]); int[] result = new int[4] { (A + B) % C, ((A % C) + (B % C)) % C, (A * B) % C, ((A % C..
Algorithm/BaekJoon
2022. 7. 11. 15:06