From 9f1285dfbe593bfb1b9da31e19125950c475c450 Mon Sep 17 00:00:00 2001 From: heerucan Date: Sat, 2 Apr 2022 03:57:39 +0900 Subject: [PATCH] =?UTF-8?q?[BOJ]=201439=EB=B2=88=20=EB=92=A4=EC=A7=91?= =?UTF-8?q?=EA=B8=B0=20(#1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...0\354\227\264\353\222\244\354\247\221\352\270\260.py" | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 "CodingTest/CH3 \352\267\270\353\246\254\353\224\224/\353\254\270\354\236\220\354\227\264\353\222\244\354\247\221\352\270\260.py" diff --git "a/CodingTest/CH3 \352\267\270\353\246\254\353\224\224/\353\254\270\354\236\220\354\227\264\353\222\244\354\247\221\352\270\260.py" "b/CodingTest/CH3 \352\267\270\353\246\254\353\224\224/\353\254\270\354\236\220\354\227\264\353\222\244\354\247\221\352\270\260.py" new file mode 100644 index 0000000..faa5594 --- /dev/null +++ "b/CodingTest/CH3 \352\267\270\353\246\254\353\224\224/\353\254\270\354\236\220\354\227\264\353\222\244\354\247\221\352\270\260.py" @@ -0,0 +1,9 @@ +s = list(map(int, input())) +count = 0 +for i in range(len(s)): + if s[i-1] != s[i]: + count += 1 + +print(count//2) + +