while 1: ss = input() if ss != "END": print(ss[::-1]) else: break https://www.acmicpc.net/problem/11365 11365번: !밀비 급일 문제 당신은 길을 가다가 이상한 쪽지를 발견했다. 그 쪽지에는 암호가 적혀 있었는데, 똑똑한 당신은 암호가 뒤집으면 해독된다는 것을 발견했다. 이 암호를 해독하는 프로그램을 작성하시오. 입력 한 줄에 하나의 암호가 주어진다. 암호의 길이는 500을 넘지 않는다. 마지막 줄에는 "END"가 주어진다. (END는 해독하지 않는다.) 출력 각 암호가 해독된 것을 한 줄에 하나씩 출력한다. 예제 입력 1 복사 !edoc doog a tahW noitacitsuf www.acmicpc.net
Python3.x 1.비루하다 N = int(input()) ball = [1, 0, 0] for i in range(N): x, y = map(int, input().split()) if ball[y - 1] == 1: ball[y - 1] = 0 ball[x - 1] = 1 elif ball[x - 1] == 1: ball[x - 1] = 0 ball[y - 1] = 1 print(ball.index(1) + 1) 2. skyisclear분 참고 함 N = int(input()) ball = [0, 1, 0, 0] for i in range(N): x, y = map(int, input().split()) ball[x], ball[y] = ball[y], ball[x] print(ball.index(..
그냥 전부 그려버렸다 C #include int main() { int arr[100][100] = { 0, }; int i, j, k, x, y, cnt, N; i = j = k = x = y = cnt = N = 0; scanf("%d", &N); for (i = 0; i < N; i++) { scanf("%d %d", &x, &y); for (j = x - 1; j < x - 1 + 10; j++) for (k = y - 1; k < y - 1 + 10; k++) arr[j][k] = 1; } for (i = 0; i < 100; i++) for (j = 0; j < 100; j++) if (arr[i][j] == 1) cnt++; printf("%d", cnt); return 0; } Python..
Python3.x string = input() chk = 0 for i in range(len(string) // 2): if string[i] == string[len(string) - 1 - i]: pass else: chk+=1 break print("0" if chk != 0 else "1") https://www.acmicpc.net/problem/10988 10988번: 팰린드롬인지 확인하기 첫째 줄에 단어가 주어진다. 단어의 길이는 1보다 크거나 같고, 100보다 작거나 같으며, 알파벳 소문자로만 이루어져 있다. www.acmicpc.net
c++ null python for문으로 만들고 다른 사람 코드 보고 자괴감 들었다. replace로 되는데... 1. x, y = input().split() mini = int(x.replace("6", "5")) + int(y.replace("6", "5")) maxi = int(x.replace("5", "6")) + int(y.replace("5", "6")) print(mini, maxi) 2. x, y = map(list, input().split()) m = n = str() a = b = int() l = list() for j in ['6', '5']: for i in range(len(x)): if x[i] != j: m += x[i] else: if j == '6':m += '5' ..
google drive UNICODE: https://drive.google.com/open?id=1x0OKGIQVDRlvG-v8AW4WRQVMc3qO8TQr Google 드라이브 - 모든 파일을 한 곳에서 하나의 계정으로 모든 Google 서비스를 Google 드라이브로 이동하려면 로그인하세요. accounts.google.com google drive muiltibyte: https://drive.google.com/open?id=1hIVJINFeZL_TY_4kzMXS9CApDNuEmxT- dcmtk3.6.4_vs2019_multibyte.zip drive.google.com 이 글 보고 만듦: https://micropilot.tistory.com/2149 DCMTK VC++ 2012 Setup D..
#include "pch.h" #include #include using namespace cv; using namespace std; void onMouse(int, int, int, int, void *); void dusflq(Point2f, Point2f, Point2f); int cnt = 0; double a, b, c; Mat image(500, 500, CV_8UC3, Scalar(255, 100, 100)); Point2f m_pt1, m_pt2, m_pt3; int main() { line(image, Point(0, 480), Point(499, 480), Scalar(0), 1); // x축 line(image, Point(20, 0), Point(20, 499), Scalar(0)..
Contact: j0n9m1n1@gmail.com