-
topcoder - A0Papertopcoder.com 2019. 10. 30. 13:48728x90
public class A0Paper { public String canBuild(int[] A){ for(int i = A.length-1; i > 0; --i) A[i-1] += A[i]/2; return (A[0] > 0)? "Possible": "Impossible"; } }
Tip
문제 설명에, Letter, Legal, Tabloid 는 무시하셔도 됩니다.
Source file
https://github.com/skysign/WSTT/tree/master/A0Paper/src/com/tistory/skysign/WSTT/A0Paper
728x90'topcoder.com' 카테고리의 다른 글
topcoder PBG에서 시작된 Dynamic Programming의 여정... (0) 2019.12.04 topcoder.com / AB / Solution (0) 2019.11.19 topcoder / ANewHope / solution (0) 2019.11.19