목록분류 전체보기 (3)
yeonseong
기존의 문제점1. 이미 지난 시간에 대해서 평가창을 열 수 있었음2. 직관적이지 않은 시간선택3. 평가창을 여는데까지 뎁스가 깊음4. 해당 날짜만 선택할 수 있음해결1. 인터페이스를 직관적으로 개선2. 다른 날짜에 시간도 선택 가능하도록 개선기존의 문제점 2input창의 width가 고정되어 있어 긴 글을 한번에 보지 못하는 문제해결 2input을 textarea로 변경하여 사용자가 영역을 확장할 수 있도록 변경다운로드 링크https://chromewebstore.google.com/detail/codyssey-improved/dmmmabfahpkbjajgijapgfiiicdekmme깃허브 주소https://github.com/YeonSeong-Lee/codyssey_improved/
문제https://www.acmicpc.net/problem/13412풀이# https://www.acmicpc.net/problem/13412import sysinput = sys.stdin.readlinet = int(input())def gcd(a, b): while b > 0: a, b = b, a % b return adef count_disjoint_pair(n): cnt = 1 for i in range(2, int(n ** 0.5) + 1): if n % i == 0 and gcd(i, n // i) == 1: cnt += 1 return cntfor _ in range(t): n = int(input()) print(count_disjoint_pair..
문제링크https://www.acmicpc.net/problem/14500정답import sysinput = sys.stdin.readlinen, m = map(int, input().split())info = []res = 0def count_case(shape): cnt = 0 for e in shape: y, x = e if y = n or x = m: return 0 cnt += info[y][x] return cntdef max_count(i, j): # - block case_1 = count_case([(i, j), (i+1, j), (i+2, j), (i+3, j)]) case_2 = count_cas..