Skip to content

Commit 5a2dbec

Browse files
author
hangyeol
committed
121차 2번 문제풀이
1 parent f8541f3 commit 5a2dbec

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import sys
2+
3+
def main():
4+
input = sys.stdin.readline
5+
6+
N = int(input())
7+
heights = list(map(int, input().split()))
8+
9+
result = 0
10+
11+
12+
if __name__ == '__main__':
13+
main()

0 commit comments

Comments
 (0)