https://www.acmicpc.net/problem/1260
DFS 예습을 했다.
https://www.acmicpc.net/problem/1009
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
//쉽게푸는문제
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
a--;
int [] arr = new int[1000];
int j = 1;
int k = j;
for(int i=0;i<arr.length;i++){
if(k > 0){
if(j == 1) {
arr[0] = j;
j++;
k = j;
}
else{
arr[i] = j;
k--;
}
}
else{
j++;
k=j;
arr[i]=j;
k--;
}
}
int sum = 0;
for(int i=a;i<b;i++){
sum+=arr[i];
}
System.out.println(sum);
}
}
https://www.acmicpc.net/problem/1292
https://www.acmicpc.net/problem/2501
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int a= Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
int [] mod = new int [a];
int count = 0;
for(int i=0;i<a;i++){
if(a%(i+1)==0){
count++;
mod[i]++;
}
}
int check = b-1;
int saveIndex = 0;
int flag = 1;
while(check>0){
for(int i=0;i<a;i++){
if(mod[i]>0){
saveIndex = i;
check--;
if(check<0){
break;
}
}
}
}
if(count < b){
flag = 0;
}
if(flag == 0){
System.out.println(0);
}
else{
System.out.println(saveIndex+1);
}
}
}
https://www.acmicpc.net/problem/2738
파이썬으로 해결하였다.
https://www.acmicpc.net/problem/1225
2학기 예습 겸 BFS, DFS 공부에 관심이 생겨서 관련 문제를 풀어보았다.
VR로 두더지 게임을 개발하는데 모든 기능들이 정상적이었지만 VR손으로 망치를 잡을 때 망치가 손의 자식으로 들어가도록 하려고 노력했다. 또한, 박스를 망치가 통과해버리는 오류를 고치려고 구글링 하였다.
'2022여름방학_모각코' 카테고리의 다른 글
진저비어 팀: 모각코 6주차 모임 활동결과(22.08.17 / 수요일 / 14:00~17:00) (0) | 2022.08.17 |
---|---|
진저비어 팀: 모각코 6주차 모임 목표(22.08.17/ 수요일 / 14:00~17:00) (0) | 2022.08.17 |
진저비어 팀: 모각코 5주차 모임 목표(22.08.10 / 수요일 / 14:00~17:00) (0) | 2022.08.10 |
진저비어 팀: 모각코 4주차 모임 활동결과(22.08.03 / 수요일 / 14:00~17:00) (0) | 2022.08.03 |
진저비어 팀: 모각코 4주차 모임 목표(22.08.03 / 수요일 / 14:00~17:00) (0) | 2022.08.03 |