피너클의 it공부방
백준 25311 UCPC에서 가장 쉬운 문제 번호는? (c++) : 피너클 본문
728x90
반응형
https://www.acmicpc.net/problem/25311
구현문제다.
그냥 A출력하면 된다.
#include <iostream>
#include <string>
using namespace std;
string s;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> s;
cout << 'A';
}
전체코드다.
728x90
반응형
'백준' 카테고리의 다른 글
백준 16566 카드 게임 (c++) : 피너클 (0) | 2022.08.12 |
---|---|
백준 2568 전깃줄 -2 (c++) : 피너클 (0) | 2022.08.11 |
백준 1766 문제집 (c++) : 피너클 (0) | 2022.08.09 |
백준 25416 빠른 숫자 탐색 (c++) : 피너클 (0) | 2022.08.09 |
백준 2623 음악프로그램 (c++) : 피너클 (0) | 2022.08.08 |
Comments