
[제품리뷰] 지마스타 JG271L6741 27인치 165hz 모니터
2023. 7. 15. 13:36
비머의 낙서장(구)
이번에 급하게 모니터가 필요하여 퀘이사존을 탐방하던 도중 정림전자글이 보여 구매하게되었다. 제품은 다음과같은 모습으로 배송이 됐다. 모니터를 워낙 구매해본지 오래돼서 어떻게 배송됐었는지 생각이 안나는데 지마스타는 그냥 모니터 박스 그자체로 배송이 되었다. 물론 한번더 박스포장을 하면 좋겠다만은 정상적으로 배송이 되었기에 패스한다. 하지만 요즘 비가 많이와서 조금 조심은 해야할듯하다. 제품 외관은 위와같다. 원래 이걸 사용할 친구를 생각해서 곡면 모니터도 생각했었는데 내가 워낙 곡면 모니터를 좋아하지 않아서 평면으로 샀다. 내구성도 그렇고 좀 왜곡되는게 있는것같아서.. 아래는 커브드 제품이다. 그냥 평면 제품이랑 디자인은 똑같다. 그냥 입맛대로 고르면 될듯하다. 가격은 약 16만 4천원 27인치에 165주..
[SWEA] 2001: 파리퇴치 (JAVA)
2022. 7. 5. 18:27
Algorithm/SWEA
1 import java.util.Scanner; public class solution_d2_2001 { public static void main(String[] args) { // 2001 파리 퇴치 Scanner sc= new Scanner(System.in); int testcase=sc.nextInt(); for (int i=0; i
[SWEA] 1979: 어디에 단어가 들어갈수 있을까? (JAVA)
2022. 7. 5. 18:26
Algorithm/SWEA
1 import java.util.Scanner; public class solution_d2_1979 { public static void main(String[] args) { // 1979 어디에 단어가 들갈수있을까? //test case수 입력 Scanner sc = new Scanner(System.in); int TestCase = sc.nextInt(); //test case수 만큼 과정반복 for (int i = 0; i
[SWEA] 1959: 두개의 숫자열 (JAVA)
2022. 7. 5. 18:22
Algorithm/SWEA
1 import java.util.Scanner; public class solution_d2_1959 { public static void main(String[] args) { // 1959. 두개의 숫자열 Scanner sc = new Scanner(System.in); // 반복 횟수 int chaces = sc.nextInt(); // 반복 횟수만큼 반복 for (int i = 0; i
[SWEA] 2025: N줄 덧셈 (python)
2022. 7. 4. 17:47
Algorithm/SWEA
1 N= int(input()) sum=0 for i in range(N): sum+=i+1 print(sum) cs
[SWEA] 2019: 더블더블 (python)
2022. 7. 4. 17:45
Algorithm/SWEA
1 n=int(input()) result=1 num=[] for i in range(n+1): if (i==0): num.append(1) else: result=result*2 num.append(result) print(' '.join(map(str,num))) cs
[SWEA] 1938: 아주 간단한계산기 (python)
2022. 7. 4. 17:44
Algorithm/SWEA
1 a, b = map(int, input().split()) plus=a+b minus=a-b mult=a*b mod=a//b print(plus,minus,mult,mod,sep="\n") cs
[SWEA] 1936: 1대1 가위바위보 (python)
2022. 7. 4. 17:38
Algorithm/SWEA
1 A, B= map(int, input().split()) #가위 1 바위 2 보 3 if (A==1 and B==2): print("B") elif (A==3 and B==1): print("B") elif (A==2 and B==3): print("B") else: print("A") cs