https://www.acmicpc.net/problem/7287
아이디어:
출력이 가능한지 묻는 문제
내 프로필 > 맞았습니다를 출력해서 자꾸 틀렸는데 정답은 맞은 문제를 출력해야한다.
// 7287
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout << "123" << "\ntemp";
return 0;
}
'algorithm' 카테고리의 다른 글
백준 2741번 N 찍기 (1) | 2024.10.27 |
---|---|
백준 2420번 사파리월드 (0) | 2024.10.27 |
백준 10699번 오늘 날짜 (0) | 2024.10.27 |
백준 1735번 분수 합 (0) | 2024.10.20 |
백준 13241번 최소공배수 (0) | 2024.10.20 |