Skip to content

us4c0d3/acmicpc-algorithm

Repository files navigation

공부용 백준 풀이 저장 레포

Links

백준 사이트

solved.ac

blog

Settings

VSCode with CPH

C++ 20

Python 3.12

Boiler Plates

#include <bits/stdc++.h>
#define fastio ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define endl '\n'
using namespace std;
using ll = long long;
using ull = unsigned long long;
using u = unsigned;
using pii = pair<int, int>;

int main() {
    fastio;
    
    return 0;
}
from sys import stdin as s
input = lambda: s.readline().rstrip()

swea

import sys
sys.stdin = open('input.txt', 'r')

T = int(input())

def solve():
    pass

for tc in range(1, T + 1):
    print(f'#{tc} {solve()}')

Searching Keywords

!@$me *g5..g1 s#100..

History

  • 20230116 ~ 20230327 1일 1솔 실천
  • 20230311 54일 연속 문제해결 후 스트릭 끊김
  • 20230316 ~ 20230327 단계별로 풀어보기진행
  • 20260107 ~ SSAFY 15기 입과 후 SWEA 병행. 레포에 아카이빙 잘 안함
  • 20260214 ~ 백준허브 연결. 자동 커밋

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors