일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 이미지 좌표 추출
- react
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- Error:error:0308010C:digital envelope routines::unsupported
- can't getting credentials
- 반응형 페이지 좌표 변환
- S3
- 김골라
- node
- netlify variables
- credential error
- ogr2ogr
- NODE_VERSION
- rwdImageMaps
- SASS
- nodejs
- CSS
- AWS CodePipeline
- 설치완료안됨
- GeoJSON object too complex/large
- AWS
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- aws ec2
- C언어
- Unable to find the global bin directory
- 어셈블리어
- expo
- AWS CodeBuild
- 이미지 맵
- EC2
- Today
- Total
목록Programming/C언어 백준 풀이 (26)
ImFe's study
#include int main() { int a=0; int b, c; scanf("%d", &a); for(int i=1; i
#include int main() { int a=0; scanf("%d", &a); for(int i=0; i
#include int main() { int a; scanf("%d", &a); for(int i=1; i
/*#include int main() { int a; scanf("%d", &a); printf("%d", a*(a+1)/2); return 0; } *///공식을 이용한 풀이 #include int main() { int a=0; int sum=0; scanf("%d", &a); for (int i = 0; i
#include int main() { int c; scanf("%d", &c); int a, b; for (int i = 0; i < c; i++) { scanf("%d %d", &a, &b); printf("%d\n", a + b); } return 0; }
#include int main() { int dan=0; scanf("%d", &dan); for(int i=1; i
#include int main() { int h, m = 0; scanf("%d %d", &h, &m); if (m >= 45) { m -= 45; } else { h -= 1; m += 15; } if (h < 0) {h = 23; } printf("%d %d", h, m); return 0; }