:: ADVANCE ::
{// 필수 입력 정보 사항"name":"My Extension",// 확장 프로그램 이름"version":"0.1",// 버전"manifest_version":2,// manifest.json 형식 버전 // 설명, 아이콘,"description":"확장 프로그램에 대한 일반적인 텍스트 설명","icons":{"16":"icon16.png","48":"icon48.png","128":"icon128.png"},"default_locale":"en",// 이건 뭐지 // Pick one (or none)(한가지 또는 선택하지 않음)"browser_action":{"default_icon":"icon.png","default_title":"QRCode Generator","default_popup":"qr..
dovelet 옥상 색종이 (koi_Mpaper) http://59.23.113.171/pool/koi_Mpaper/koi_Mpaper.php?pname=koi_Mpaper 123456789101112131415161718192021222324252627282930313233343536#include int map[110][110];int cnt; int main(void){ int n, i, x, y, j; scanf("%d", &n); while (n--) { scanf("%d%d", &x, &y); for (i = 0; i
dovelet 3 단계 For 최대공약수, 최소공배수 / gcd_lcm http://59.23.113.171/30stair/gcd_lcm/gcd_lcm.php?pname=gcd_lcm 1234567891011121314151617181920212223242526272829303132333435363738394041#include int gcd(int n, int m){ int temp; while (n != m) { if (n > m) { temp = n; n = m; m = temp; } temp = n; n = m - n; m = temp; } return n;} int lcm(int n, int m){ int i = 1, temp = n; while (temp % m != 0) { temp = n ..