[๋ฐฑ์ค,c++] 10824๋ฒ - ๋ค ์
10824๋ฒ: ๋ค ์ ์ฒซ์งธ ์ค์ ๋ค ์์ฐ์ A, B, C, D๊ฐ ์ฃผ์ด์ง๋ค. (1 ≤ A, B, C, D ≤ 1,000,000) www.acmicpc.net #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(0); string temp1, temp2; string a, b, c, d; cin >> a >> b >> c >> d; temp1 = a + b; temp2 = c + d; cout
2021. 10. 25.
[๋ฐฑ์ค,c++] 10820๋ฒ - ๋ฌธ์์ด ๋ถ์
10820๋ฒ: ๋ฌธ์์ด ๋ถ์ ๋ฌธ์์ด N๊ฐ๊ฐ ์ฃผ์ด์ง๋ค. ์ด๋, ๋ฌธ์์ด์ ํฌํจ๋์ด ์๋ ์๋ฌธ์, ๋๋ฌธ์, ์ซ์, ๊ณต๋ฐฑ์ ๊ฐ์๋ฅผ ๊ตฌํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํ์์ค. ๊ฐ ๋ฌธ์์ด์ ์ํ๋ฒณ ์๋ฌธ์, ๋๋ฌธ์, ์ซ์, ๊ณต๋ฐฑ์ผ๋ก๋ง ์ด๋ฃจ์ด์ ธ ์ www.acmicpc.net #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(0); string s; while (getline(cin, s)) { if (s.length() == 0) break; //์
๋ ฅ์ด ์์๋ ์ข
๋ฃ int lower=0, upper = 0, number=0, empty = 0; for (int i = 0; i < s.length(); i++) { if (s[i] ..
2021. 10. 24.