process.exe로 옵션을 주고 input, output을 위해 부등호를 사용해 CreateProcess 작업할 때 문제 있었음 ex: mysqldump.exe -options > /path/mysql.dmp.sql gt, lt가 인식이 안되고 계속 옵션 넣으라는식으로 나타남 mysqldump.exe는 --result-path option이 있어 어떻게든 했는데 mysql.exe는 옵션이 없어 찾아봄 그냥 앞에 "cmd /c" 붙이면 됨
visual studio 15사용중 언제부턴가 탭을 뺐다가 다시 넣으면 크래시남 윈도우 업데이트 문제 자기 vs설치된곳에 devenv.exe.config열고 (ex: C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE) 아래 값을 기존 element 뒤에 붙여 쓰고 재시작 ;Switch.System.Windows.Interop.MouseInput.OptOutOfMoveToChromedWindowFix=true;Switch.System.Windows.Interop.MouseInput.DoNotOptOutOfMoveToChromedWindowFix=true 예시 권한 없어서 안되면 devenv.exe.config 바탕화면에 복사 > 수정 > 붙여..
www.acmicpc.net/problem/13235 13235번: 팰린드롬 팰린드롬은 앞에서부터 읽을 때와 뒤에서부터 읽을 때가 똑같은 단어를 의미한다. 예를 들어, eve, eevee는 팰린드롬이고, eeve는 팰린드롬이 아니다. 단어가 주어졌을 때, 팰린드롬인지 아닌지 판 www.acmicpc.net sen = input() if sen == sen[::-1]: print("true") else: print("false")
www.acmicpc.net/problem/11650 11650번: 좌표 정렬하기 첫째 줄에 점의 개수 N (1 ≤ N ≤ 100,000)이 주어진다. 둘째 줄부터 N개의 줄에는 i번점의 위치 xi와 yi가 주어진다. (-100,000 ≤ xi, yi ≤ 100,000) 좌표는 항상 정수이고, 위치가 같은 두 점은 없다. www.acmicpc.net N = int(input()) l = [] for i in range(N): x, y = input().split() l.append([int(x), int(y)]) l.sort() for x, y in enumerate(l): print(y[0], y[1])
질문 검색 보고 알았다... www.base64decode.org/ Base64 Decode and Encode - Online Decode from Base64 or Encode to Base64 with advanced formatting options. Enter our site for an easy-to-use online tool. www.base64decode.org https://startlink.io/ 스타트링크 (Startlink) 0 Days 0 Lectures 0 Members 0 Services startlink.io text로 넣었음~!
www.acmicpc.net/problem/10162 10162번: 전자레인지 3개의 시간조절용 버튼 A B C가 달린 전자레인지가 있다. 각 버튼마다 일정한 시간이 지정되어 있어 해당 버튼을 한번 누를 때마다 그 시간이 동작시간에 더해진다. 버튼 A, B, C에 지정된 시간은 www.acmicpc.net T = int(input()) a = 0 b = 0 c = 0 if T % 10 != 0: print("-1") else: if T // 300 > 0: a = T // 300 T = T % 300 if T // 60 > 0: b = T // 60 T = T % 60 if T // 10 > 0: c = T // 10 T = T % 10 print(a, b, c)
www.acmicpc.net/problem/1157 1157번: 단어 공부 알파벳 대소문자로 된 단어가 주어지면, 이 단어에서 가장 많이 사용된 알파벳이 무엇인지 알아내는 프로그램을 작성하시오. 단, 대문자와 소문자를 구분하지 않는다. www.acmicpc.net import operator sen = input().lower() sto = {} for i in range(len(sen)): if ord(sen[i]) in sto: sto[ord(sen[i])] += 1 else: sto[ord(sen[i])] = 1 fmk = max(sto.items(), key=operator.itemgetter(1))[0] fmv = max(sto.items(), key=operator.itemgetter(1))[..
Contact: j0n9m1n1@gmail.com