일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Ubuntu 20.04
- id # tr # 환경변수
- 백준 #baekjoon # 2563
- 네이버 부스트 코스
- 운영체제론
- 웹/모바일
- 8기
- 부스트캠프
- Virtual Box 7.0.6
- 보기 편하라고 만든
- 후기
- 네이버
- Today
- Total
목록전체 글 (115)
Miner
보호되어 있는 글입니다.
>> 처음 코드 import sys a, b = list(map(int, sys.stdin.readline().split())) arr =[ list(map(int, sys.stdin.readline().split())) for i in range(a) ] for p in range(len(arr)): arr[p] = str(arr[p]) ma_x = min(a,b) cnt = 0 mybreak = True while ma_x > 1: for i in range(a - ma_x +1): for j in range(b - ma_x +1): if arr[i][j] == arr[i + ma_x -1][j] and arr[i][j] == arr[i][j + ma_x -1] and arr[i][j] == arr[..
import sys a, b = list(map(int, sys.stdin.readline().split())) arr = [ i for i in range(a, b+1)] i = a while i > 에라토스테네스의 체 https://freedeveloper.tistory.com/392 [이것이 코딩 테스트다 with Python] 38강 에라토스테네스의 체 https://www.youtube.com/watch?v=9rLFFKmKzno&list=PLVsNizTWUw7H9_of5YCB0FmsSc-K44y81&index=38 다수의 소수 판별 하나의 수에 대해서 소수인지 아닌지 판별하는 방법을 알아보았다 하지만 특정한 수의 범위 안에 존재하 freedeveloper.tistory.com 소수인지 검사할때 ..
>> 두 코드의 차이 원래 코드 import sys n = int(sys.stdin.readline()) arr = [ tuple(map(int, sys.stdin.readline().split())) for i in range(n) ] #print(arr) color = [[0] * 100] * 100 #print(color) # (3,7) 들어가면 3-13 7-17 def colored(a,b): for i in range(a,a+10): for j in range(b,b+10): color[i][j] = 1 for i in arr: colored(i[0],i[1]) cnt = 0 for i in range(100): for j in range(100): if color[i][j] == 1: cnt ..
Fatal Python error: init_stdio_encoding: failed to get the Python codec name of the stdio encoding Python runtime state: core initialized LookupError: unknown encoding: x-windows-949 Current thread 0x00003bc8 (most recent call first): Settings -> Editor -> General -> Console -> Default Encoding 설정도 UTF-8로 변경 Settings > File Encodings > Project Encoding을 UTF-8 >>해결
Exception in thread django-main-thread: Traceback (most recent call last): File "C:\Users\0711s\AppData\Local\Programs\Python\Python311\Lib\threading.py", line 1038, in _bootstrap_inner self.run() File "C:\Users\0711s\AppData\Local\Programs\Python\Python311\Lib\threading.py", line 975, in run self._target(*self._args, **self._kwargs) File "C:\venvs\mysite\Lib\site-packages\django\utils\autoreloa..