Skip to content

Instantly share code, notes, and snippets.

@monhime
Last active August 15, 2021 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monhime/db85c4ae280c1d683cb3d3cbc0ea0595 to your computer and use it in GitHub Desktop.
Save monhime/db85c4ae280c1d683cb3d3cbc0ea0595 to your computer and use it in GitHub Desktop.
ABC214_A
import sys
from fractions import gcd
from collections import Counter, deque, defaultdict
from heapq import heappush, heappop, heappushpop, heapify, heapreplace, merge
from bisect import bisect_left, bisect_right, bisect, insort_left, insort_right, insort
from itertools import accumulate, product, permutations, combinations
from operator import itemgetter
import math # math.inf
def input(): return sys.stdin.readline().rstrip()
def main():
mod = 10**9 + 7
n =int(input())
if n <= 125:
print(4)
elif n <= 211:
print(6)
else:
print(8)
if __name__=='__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment