Notice
		                                        
										
                                    
                                        
                                    
                                        Recent Posts
                                        
                                    
                                        
                                    
                                        Recent Comments
                                        
                                    
                                        
                                    
                                        Link
                                        
                                    
                                | 일 | 월 | 화 | 수 | 목 | 금 | 토 | 
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 | 
| 9 | 10 | 11 | 12 | 13 | 14 | 15 | 
| 16 | 17 | 18 | 19 | 20 | 21 | 22 | 
| 23 | 24 | 25 | 26 | 27 | 28 | 29 | 
| 30 | 
                                        Tags
                                        
                                    
                                        
                                    - EOF
- 차세대 보안 리더 양성
- 10995
- 5086
- text
- BoB 7기
- 4101
- 정보보호 영재원
- 공주대 정보보호
- 2501
- 11943
- 10833
- 정보보호 영재교육원
- 2605
- 영재원
- Python
- 차세대 보안 리더 양성 프로그램
- 5586
- BOB
- 11109
- 1547
- 2965
- 리뷰
- 2476
- 영재교육원
- boj
- 2506
- BoB 후기
- acmicpc
- Best of the Best
                                        Archives
                                        
                                    
                                        
                                    - Today
- Total
목록EOF (5)
짱해커가 되어보자
			
			
				boj 10823
				
	
                
            
                
            
                
	
		* Solved 기준 브론즈2 단순 풀이 from sys import stdin s = '' for n in stdin.readlines(): s += n.replace('\n','') print(sum(map(int,s.split(','))))
				프로그래밍_일반/백준
				
				2020. 3. 4. 08:25
			
		
			
			
				boj 1673
				
	
                
            
                
            
                
	
		* Solved 기준 브론즈2 단순 풀이 import sys while True: i = sys.stdin.readline() if not(i): break n,k = map(int, i.split()); s=n while n//k: s,n = s+n//k, n//k+n%k print(s)
				프로그래밍_일반/백준
				
				2020. 3. 3. 09:53
			
		
			
			
				boj 1371
				
	
                
            
                
            
                
	
		* Solved 기준 브론즈2 단순 풀이 import sys l = [0]*26 while True: n = sys.stdin.readline() if not(n): break for c in n: if(ord(c)!=10 and ord(c)!=32): l[ord(c)-97] += 1 for i in range(0,26): print(chr(i+97) if l[i]==max(l) else '', end='')
				프로그래밍_일반/백준
				
				2020. 2. 26. 09:33
			
		
			
			
				boj 10820
				
	
                
            
                
            
                
	
		
	
                
            
                
            
				
				
				
				
                
    				
                
            * Solved 기준 브론즈2 단순 풀이 import sys while True: n = sys.stdin.readline() if not(n): break s,d,c,b = 0,0,0,0 for i in n: i = ord(i) if(i==32): b+=1 elif(i>=48 and i=65 and i=97 and i
				프로그래밍_일반/백준
				
				2020. 2. 16. 11:16