본문 바로가기

Beakjoon

(4)
C언어) baekjoon 10172 [개] 개 성공 한국어 시간 제한메모리 제한제출정답맞은 사람정답 비율 1 초 256 MB 101398 35693 32573 38.339% 문제 아래 예제와 같이 개를 출력하시오. 입력 없음. 출력 개를 출력한다. 예제 입력 1 예제 출력 1 |\_/| |q p| /} ( 0 )"""\ |"^"` | ||_/=\\__| 1 2 3 4 5 6 7 8 9 10 #include int main() { printf("|\\_/|\n"); printf("|q p| /}\n"); printf("( 0 )\"\"\"\\\n"); printf("|\"^\"` |\n"); printf("||_/=\\\\__|\n"); return 0; } http://colorscripter.com/info#e" target="_blank" s..
C언어) baekjoon 10171 [고양이] 고양이 성공 한국어 시간 제한메모리 제한제출정답맞은 사람정답 비율 1 초 256 MB 45718 16914 15664 41.272% 문제 아래 예제와 같이 고양이를 출력하시오. 입력 없음. 출력 고양이를 출력한다. 예제 입력 1 예제 출력 1 \ /\ ) ( ') ( / ) \(__)| 1 2 3 4 5 6 7 8 #include int main(void) { printf("\\ /\\\n"); printf(" ) ( ')\n"); printf("( / )\n"); printf(" \\(__)|\n"); } http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs 풀이 방법 : \n은 줄바꿈이다...
C언어) baekjoon 10718 [We love kriii] We love kriii 성공 1 초 256 MB 67650 47824 43114 73.382% 문제 ACM-ICPC 인터넷 예선, Regional, 그리고 World Finals까지 이미 2회씩 진출해버린 kriii는 미련을 버리지 못하고 왠지 모르게 올 해에도 파주 World Finals 준비 캠프에 참여했다. 대회를 뜰 줄 모르는 지박령 kriii를 위해서 격려의 문구를 출력해주자. 입력 본 문제는 입력이 없다. 출력 두 줄에 걸쳐 "강한친구 대한육군"을 한 줄에 한 번씩 출력한다. 예제 입력 1 복사 예제 출력 1 복사 강한친구 대한육군 강한친구 대한육군 1 2 3 4 5 #include int main(){ printf("강한친구 대한육군\n강한친구 대한육군"); } http://colorscr..
C언어) baekjoon 2557 [Hello World] Hello World 성공 시간 제한메모리 제한제출정답맞은 사람정답 비율 1 초 128 MB 222987 100249 77640 45.545% 문제 Hello World!를 출력하시오. 입력 없음 출력 Hello World!를 출력하시오. 예제 입력 1 예제 출력 1 Hello World! 알고리즘 분류 출력 1 2 3 4 5 #include int main(){ printf("Hello World!"); } http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs 풀이 방법 : 출력문을 연습하는 문제이다. 즉 출력 방법만 알면 풀 수 있다.

/*스크롤 인디케이터 시작*/ .header { position: absolute; top: 0; z-index: 1; width: 100%; background-color: #fff; } .progress-container { width: 100%; height: 4px; background: #f6f6f6; } .progress-bar { height: 4px; background: #6C6C6C; width: 0%; } /*스크롤 인디케이터 종료*/ /*왼쪽, 좌측 밑의 이미지 추가 시작*/ /*가로의 길이가 1510일때까지는 보여라*/ @media screen and (min-width:1500px) { .main_ad { display:visible; position: absolute; left: 0px; bottom: 80px; cursor: pointer; z-index: 11; } } /*가로의 길이가 1511일까지는 보이지 말아라*/ @media screen and (max-width:1510px) { .main_ad { display:none; position: absolute; left: 0px; bottom: 80px; cursor: pointer; z-index: 11; } } /*왼쪽, 좌측 밑의 이미지 추가 종료*/ /*이웃추가버튼 추가 시작*/ @media screen and (min-width:500px) { .add_adBanner { display:visible; } } @media screen and (max-width:510px) { .add_adBanner { display:none; } } .add_adBanner ul { position: absolute; left: 10px; bottom: 22px; cursor: pointer; z-index: 12; } .add_adBanner li { margin : 0 0 0 0; padding : 0 0 0 0; border : 0; float : left; } /*이웃추가버튼 추가 종료*/