From a73429a776a5903c48e18bd175c405c9203d7197 Mon Sep 17 00:00:00 2001 From: hyesuuou <68391767+hyesuuou@users.noreply.github.com> Date: Mon, 13 Dec 2021 03:49:15 +0900 Subject: [PATCH] =?UTF-8?q?[#3]=202021.12.12=20=EB=B0=B1=EC=A4=80=20?= =?UTF-8?q?=EB=8B=A8=EA=B3=84=EB=B3=841.=20=EC=9E=85=EC=B6=9C=EB=A0=A5?= =?UTF-8?q?=EA=B3=BC=20=EC=82=AC=EC=B9=99=EC=97=B0=EC=82=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://www.acmicpc.net/step/1 --- .../1000.py" | 2 ++ .../1001.py" | 2 ++ .../1008.py" | 2 ++ .../10171.py" | 4 ++++ .../10172.py" | 5 +++++ .../10430.py" | 5 +++++ .../10718.py" | 2 ++ .../10869.py" | 9 +++++++++ .../10998.py" | 2 ++ .../2557.py" | 1 + .../2588.py" | 7 +++++++ 11 files changed, 41 insertions(+) create mode 100644 "Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/1000.py" create mode 100644 "Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/1001.py" create mode 100644 "Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/1008.py" create mode 100644 "Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10171.py" create mode 100644 "Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10172.py" create mode 100644 "Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10430.py" create mode 100644 "Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10718.py" create mode 100644 "Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10869.py" create mode 100644 "Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10998.py" create mode 100644 "Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/2557.py" create mode 100644 "Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/2588.py" diff --git "a/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/1000.py" "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/1000.py" new file mode 100644 index 0000000..681c0e5 --- /dev/null +++ "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/1000.py" @@ -0,0 +1,2 @@ +a, b = input().split() +print(int(a) + int(b)) \ No newline at end of file diff --git "a/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/1001.py" "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/1001.py" new file mode 100644 index 0000000..b6aeaef --- /dev/null +++ "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/1001.py" @@ -0,0 +1,2 @@ +a, b = input().split() +print(int(a) - int(b)) \ No newline at end of file diff --git "a/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/1008.py" "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/1008.py" new file mode 100644 index 0000000..fb1fee2 --- /dev/null +++ "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/1008.py" @@ -0,0 +1,2 @@ +a, b = input().split() +print(int(a) / int(b)) \ No newline at end of file diff --git "a/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10171.py" "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10171.py" new file mode 100644 index 0000000..2716007 --- /dev/null +++ "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10171.py" @@ -0,0 +1,4 @@ +print("\\ /\\") +print(" ) ( ')") +print("( / )") +print(" \(__)|") \ No newline at end of file diff --git "a/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10172.py" "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10172.py" new file mode 100644 index 0000000..ca44617 --- /dev/null +++ "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10172.py" @@ -0,0 +1,5 @@ +print("|\_/|") +print("|q p| /}") +print("( 0 )\"\"\"\\") +print("|\"^\"` |") +print("||_/=\\\\__|") \ No newline at end of file diff --git "a/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10430.py" "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10430.py" new file mode 100644 index 0000000..2ff0656 --- /dev/null +++ "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10430.py" @@ -0,0 +1,5 @@ +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) \ No newline at end of file diff --git "a/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10718.py" "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10718.py" new file mode 100644 index 0000000..46839af --- /dev/null +++ "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10718.py" @@ -0,0 +1,2 @@ +print("강한친구 대한육군") +print("강한친구 대한육군") \ No newline at end of file diff --git "a/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10869.py" "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10869.py" new file mode 100644 index 0000000..34c0d0e --- /dev/null +++ "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10869.py" @@ -0,0 +1,9 @@ +a, b = input().split() +a = int(a) +b = int(b) + +print(a+b) +print(a-b) +print(a*b) +print(a//b) +print(a%b) \ No newline at end of file diff --git "a/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10998.py" "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10998.py" new file mode 100644 index 0000000..4e5e761 --- /dev/null +++ "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/10998.py" @@ -0,0 +1,2 @@ +a, b = input().split() +print(int(a) * int(b)) \ No newline at end of file diff --git "a/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/2557.py" "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/2557.py" new file mode 100644 index 0000000..1dc45ac --- /dev/null +++ "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/2557.py" @@ -0,0 +1 @@ +print("Hello World!") \ No newline at end of file diff --git "a/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/2588.py" "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/2588.py" new file mode 100644 index 0000000..c64f4c0 --- /dev/null +++ "b/Boj/\354\236\205\354\266\234\353\240\245\352\263\274 \354\202\254\354\271\231\354\227\260\354\202\260/2588.py" @@ -0,0 +1,7 @@ +a = int(input()) +b = int(input()) + +print(a * (b%10)) +print(a * (b//10%10)) +print(a * (b//100)) +print(a*b) \ No newline at end of file