date -u 1001000015Official Release Date (10.11.0): September 30, 2015
| from string import ascii_lowercase, digits | |
| from requests import get, session | |
| cookies = {"PHPSESSID": "l4g1fvabr4l3cccglkcgvs6lpl"} | |
| target = "https://los.rubiya.kr/chall/assassin_14a1fd552c61c60f034879e5d4171373.php" | |
| total = list(ascii_lowercase + digits) | |
| password = "" |
| from string import ascii_lowercase, digits | |
| from requests import get | |
| cookies = {"PHPSESSID": ""} | |
| target = "" | |
| total = list(ascii_lowercase + digits) |
| from string import ascii_lowercase, digits | |
| from requests import get | |
| cookies = {"PHPSESSID": ""} | |
| target = "문제 url" | |
| total = list(ascii_lowercase + digits) | |
| import re | |
| import asyncio | |
| import plistlib | |
| from parser import Parser | |
| MIN_MACOS = 5 | |
| MAX_MACOS = 16 | |
| class macOS: | |
| def __init__(self, product_id): |
| import requests | |
| from bs4 import BeautifulSoup | |
| d = requests.get("https://music.bugs.co.kr/chart/track/day/total?chartdate=20190303") | |
| d = d.text | |
| soup = BeautifulSoup(d, 'html.parser') | |
| data1 = soup.select('#CHARTday > table > tbody > tr:nth-child(1)') | |
| for a in soup.find_all('p', {"class" : "title"}): | |
| print(a.find('a').text) |
| #include <bits/stdc++.h> | |
| using namespace std; | |
| typedef long long int ll; | |
| ll f (ll x, ll y, ll m) { | |
| if (y == 0) return 0; | |
| if (y == 1) return x % m; | |
| if (y % 2 == 1) { | |
| ll sib = f (x, y - 1, m) % m; | |
| return ((sib % m) + x % m) % m; |
| #include <bits/stdc++.h> | |
| using namespace std; | |
| typedef long long int ll; | |
| ll f (int x, ll y, int m) { | |
| if (y == 0) return 1; | |
| if (y == 1) return x % m; | |
| if (y % 2 == 1) { | |
| ll sib = f(x, y - 1, m) % m; | |
| return ((sib % m) * (x % m)) % m; |