기술
세 부분으로 나눌 때 모든 부분의 자릿수가 같은 수인 경우 3 자리 이상의 균형을 가진 3 자리 이상의 정수를 고려합니다. 우리는 다음과 같이 숫자를 나눕니다.
abcdefghi - Standard case: the number of digits is divisable through 3:
abc def ghi
abcdefgh - Number % 3 == 2: The outer groups are both assigned another digit
abc de fgh (the inner group will have one digit less than both outer groups)
abcdefghij - Number % 3 == 1: The inner group is assigned the extra digit
abc defg hij (the inner group will have one digit more than the outer groups)
도전
당신의 임무는 3 자리 이상의 정수가 주어지면 주어진 숫자가 삼중 균형인지 여부를 결정하고 그 결과에 따라 진실 또는 거짓 값을 출력하는 프로그램을 작성하는 것입니다.
테스트 사례
333 -> True
343 -> False
3123 -> True
34725 -> True
456456 -> False
123222321 -> True
이것은 code-golf 이므로 표준 허점이 적용되며 바이트 단위의 최단 답변이 이길 수 있습니다!
when split in three parts,