일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 자바
- 배열
- C
- programmers
- 스프링
- php 프로그래밍
- php 프로그래밍 입문 예제
- 최단 경로
- php 프로그래밍 입문 연습문제
- php 프로그래밍 입문 3판
- php 프로그래밍 입문 문제풀이
- 자바 스프링
- 페이코 추천인코드
- php 프로그래밍 입문 솔루션
- Java
- php 프로그래밍 입문
- 백준
- C언어
- 파이썬
- JAVA SPRING
- 페이코 추천인
- 한정 분기
- Flutter
- 플러터 개발환경 설정
- SWEA
- 플러터
- 페이코 친구코드
- 페이코 초대코드
- spring
- php
- Today
- Total
목록전체 글 (594)
ImJay

[파이썬/Python] 백준 24078번 余り (Remainder) https://www.acmicpc.net/problem/24078 24078번: 余り (Remainder) 正の整数 X が与えられる.X を 21 で割った余りを出力せよ. www.acmicpc.net 문제 正の整数 X が与えられる.X を 21 で割った余りを出力せよ. 해설 정수를 21로 나눈 나머지를 구해보자 코드 print(int(input())%21) 풀이 1. 값을 입력 받아 정수로 형변환 후 21로 나눈 나머지를 출력합니다. print(int(input())%21)

[파이썬/Python] 백준 23235번 The Fastest Sorting Algorithm In The World 23235번: The Fastest Sorting Algorithm In The World It is common to compare sorting algorithms based on their asymptotic speeds. Some slower algorithms like selection sort take O(N2) time to sort N items, while comparison-based sorts like merge sort can go no faster than O(N log(N)) time, under reasonable a www.acmicpc.net 문제 It is..

[파이썬/Python] 백준 23234번 The World Responds 23234번: The World Responds In many introductory computer programming classes, the first program that students learn to write just prints “Hello, world!” It is used as a first assignment because it is a simple program that produces output. The program dates back to at least 1974, www.acmicpc.net 문제 In many introductory computer programming classes, the fi..