Notice
Recent Posts
Recent Comments
Link
bdfgdfg
2845번, 2914번, 3003번 본문
반응형
#include <iostream>
using namespace std;
int main(void)
{
int L,M,a,b,c,d,e;
cin >> L >> M;
cin >> a >> b >> c >> d >> e;
int count = L * M;
cout << a - count << " " <<
b - count << " " <<
c - count << " " <<
d - count << " " <<
e - count;
return 0;
}
2845번
#include <iostream>
using namespace std;
int main()
{
int a,b;
cin >> a >> b;
cout << a * (b - 1) + 1;
return 0;
}
2914번
#include <iostream>
using namespace std;
//킹 1개, 퀸 1개, 룩 2개, 비숍 2개, 나이트 2개, 폰 8개
int chess[] = {1,1,2,2,2,8};
int main(void)
{
int a;
for(int i = 0; i < 6; ++i)
{
cin >> a;
chess[i] -= a;
}
for(int i = 0; i < 6; ++i)
{
cout << chess[i] << " ";
}
return 0;
}
반응형
'코딩테스트 > 백준' 카테고리의 다른 글
2480번, 2525번 (0) | 2021.09.17 |
---|---|
3046번,5564번,8393번 (0) | 2021.09.12 |
1000,1001,1550번 문제 (0) | 2021.09.08 |
sovled.ac (0) | 2021.09.08 |
1920번 수 찾기 - 이진탐색(이분탐색) (0) | 2021.09.08 |
Comments