전체 글50 [백준]터렛 - 복습 https://www.acmicpc.net/problem/1002 원이 겹치는 경우, 외접하는 경우, 내접하는 경우 #include #include int main(void) { int T; int i; int x1, y1, r1, x2, y2, r2; double distance; int temp_x, temp_y, temp_r; scanf("%d", &T); for (i = 0; i r2) { temp_x = x1; temp_y = .. 2021. 1. 30. Anaconda 32bit 환경 설정하는 방법 아나콘다 콘솔에서 32BIT 설정 set CONDA_FORCE_32BIT=1 conda create -n py36_32 python=3.6.5 activate py36_32 해제하는법 deactivate py36_32 set CONDA_FORCE_32BIT= conda create -n py36_64 python=3.6.5 activate py36_64 conda info 명령어로 확인가능 PyCharm에서 Settings > Project Interpreter에서 만들어진 py36_32로 설정해서 사용 가능 2020. 12. 20. 이전 1 ··· 6 7 8 9 다음