분류 전체보기

    goorm 최댓값, 전기요금, 등차 또는 등비 수열

    goorm 최댓값, 전기요금, 등차 또는 등비 수열

    최댓값 # -*- coding: utf-8 -*- # UTF-8 encoding when using korean n = int(input()) a = input().split(' ') max = int(a[0]) idx = 0 for i in range(n): if(int(a[i])>max): max = int(a[i]) idx = i print(max, idx+1) 전기요금 # -*- coding: utf-8 -*- # UTF-8 encoding when using korean n = int(input()) if(nn3>>n4; if(n2*2==n1+n3 && n3*2 == n2+n4){ int d = n2 - n1; cout

    goorm 삼각형의 넓이 2, 막대기, 평균과 평균보다 큰 수, 암스트롱 수(Narcissistic Number)

    goorm 삼각형의 넓이 2, 막대기, 평균과 평균보다 큰 수, 암스트롱 수(Narcissistic Number)

    삼각형의 넓이 2 #include #include #include using namespace std; int main() { double a, b, c; double s, ans; cin >> a>> b>>c; s = (a+b+c)/2; ans = s * (s-a) * (s-b) * (s-c); ans = pow(ans,0.5); cout

    goorm 두 점 사이의 거리, n 구하기

    goorm 두 점 사이의 거리, n 구하기

    두 점 사이의 거리 # -*- coding: utf-8 -*- # UTF-8 encoding when using korean x1, y1 = map(int, input().split(' ')) x2, y2 = map(int, input().split(' ')) d = (x1-x2)**2 + (y1-y2)**2 d = d**(1/2) print(round(d,2)) n 구하기 #include using namespace std; int main() { int n; cin >> n; int sum = 0; int i = 0; while(1){ sum += i; i++; if(sum > n){ break; } } cout

    Puzzle #2: Ann Skips Bail

    Puzzle #2: Ann Skips Bail

    Puzzle #2: Ann Skips Bail – Network Forensics Puzzle Contest After being released on bail, Ann Dercover disappears! Fortunately, investigators were carefully monitoring her network activity before she skipped town. “We believe Ann may have communicated with her secret lover, Mr. X, before she left,” says the pol forensicscontest.com 문제 파일을 열고 Statistics > Conversations에서 TCP 패킷을 볼 수 있다. 여기서 보이는 ..

    Puzzle #1: Ann’s Bad AIM

    Puzzle #1: Ann’s Bad AIM

    Puzzle #1: Ann’s Bad AIM – Network Forensics Puzzle Contest Anarchy-R-Us, Inc. suspects that one of their employees, Ann Dercover, is really a secret agent working for their competitor. Ann has access to the company’s prize asset, the secret recipe. Security staff are worried that Ann may try to leak the company� forensicscontest.com 제공받은 문제 파일을 wireshark로 열어서 statistics > conversation 으로 들어가면 T..

    goorm 최단거리, 좀비런, 재정 위기

    goorm 최단거리, 좀비런, 재정 위기

    최단거리 # -*- coding: utf-8 -*- # UTF-8 encoding when using korean a = int(input()) ary = [] ary = input().split(' ') d = int(ary[1]) - int(ary[0]) for i in range(a-1): if((int(ary[i+1]) - int(ary[i])) int(m)): m = ary[i] print(m) 재정 위기 #include using namespace std; int main() { int a, b, c; cin >> a >> b >> c; if((b>=a&&c

    FwordCTF 2020 - Memory 2 (Forensics)

    FwordCTF 2020 - Memory 2 (Forensics)

    The analysis will be conducted on the given 'foren.raw' file in the previous step. We already know OS information (imageinfo), so let's check the list of processes through 'pslist'. .\volatility_2.6_win64_standalone.exe -f foren.raw --profile=Win7SP1x64 pslist The problem texts "had a secret association" and "on Internet" give us a hint to analyze "chrome." We will run 'yarascan' through the PID..

    goorm 완전 제곱수, 앵무새 꼬꼬, 은행 예금 이자 구하기

    goorm 완전 제곱수, 앵무새 꼬꼬, 은행 예금 이자 구하기

    완전 제곱수 # -*- coding: utf-8 -*- # UTF-8 encoding when using korean n = int(input()) a = [] for i in range(n): a.append(int(input())) sum =0 for i in range(0, n): tmp = a[i] ** 0.5 if int(tmp) == tmp: if(tmp ** 2 == a[i]): sum += 1 print(sum) 앵무새 꼬꼬 # -*- coding: utf-8 -*- # UTF-8 encoding when using korean checkWord = ['a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U'] n = int(input()) slist =[] a..

    FwordCTF 2020 - Memory (Forensics)

    FwordCTF 2020 - Memory (Forensics)

    We have to find the three below. 1) computername 2) user 3) password To obtain OS info, ran plugin 'imageinfo' .\volatility_2.6_win64_standalone.exe -f .\foren.raw imageinfo First, let's print out a list of processes through the pslist plug-in. .\volatility_2.6_win64_standalone.exe -f .\foren.raw --profile=Win7SP1x64 pslist I found a suspicious 'DumpIt.exe' on the full list. The PID for 'DumpIt...

    ctf-d GrrCON 2015 #3

    ctf-d GrrCON 2015 #3

    이전 글에 이은 포스팅입니다. [Wargame/ctf-d.com] - GrrCON 2015 #2 GrrCON 2015 #2 아래 포스팅에 이은 두 번째 문제입니다. GrrCON 2015 #1 vmss: VMware Suspended State File, VMware 가상화 소프트웨어로 작성된 파일 일시 중단 된 상태 일 때 가상 시스템 (VM)의 상태를 저장한다. 즉, 일시.. hec-ker.tistory.com 지난 번 #2까지 풀었던 내용으로는 다음과 같습니다. 1) 프런트 데스크 직원들은 보안 업데이트라고 생각하고 이상한 이메일을 클릭한 것을 당신에게 보고했다. 프런트 데스크 사용자의 메일주소로 이메일을 보낸 전자 메일 주소는 무엇인가? th3wh1t3r0s3@gmail.com 2) 공격자가 프런트..

    goorm 여름의 대삼각형, 배열 합치기

    goorm 여름의 대삼각형, 배열 합치기

    여름의 대삼각형 # -*- coding: utf-8 -*- # UTF-8 encoding when using korean x1, y1 = map(int, input().split(' ')) x2, y2 = map(int, input().split(' ')) x3, y3 = map(int, input().split(' ')) S = (x1*y2 + x2*y3 + x3*y1) - (x1*y3 + x3*y2 + x2*y1) if S < 0: S = -S print("%.2f" %(S/2)) 배열 합치기 # -*- coding: utf-8 -*- # UTF-8 encoding when using korean a_size, b_size = map(int, input().split(" ")) a = list(map..

    goorm 의좋은 형제, Factorial(계승), 홀수의 합

    goorm 의좋은 형제, Factorial(계승), 홀수의 합

    의좋은 형제 #include #include using namespace std; int main() { int a, b; cin >> a >> b; // a: 진우 b: 선우 int d; cin >> d; // d일 후의 식량 출력 int sw = 1; for(int i = 0; i 선우 b = b + ceil(a/2.0); a = floor(a/2.0); sw *= -1; } else{ // 선우 -> 진우 a = a + ceil(b/2.0); b = floor(b/2.0); sw *= -1; } } cout > m; int sum=0; for(int i = n; i