Skip to content

Instantly share code, notes, and snippets.

View Uniaut's full-sized avatar
🎯
Working on : Valuator

Geonwoo Choi Uniaut

🎯
Working on : Valuator
  • Samsung Electronics / DX
  • Korea
View GitHub Profile
@Uniaut
Uniaut / c2f_fast.ipynb
Created December 18, 2022 21:17
c2f_fast.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Uniaut
Uniaut / PI.py
Last active November 24, 2021 04:40
Why too slow
'''
PI : 그냥 dp 문제
https://www.algospot.com/judge/problem/read/PI
'''
def read_line():
return [int(token) for token in input().strip()]
def n_solve(seq):