일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 日本語
- 일본어
- 비즈니스일본어
- rails
- html
- 연습문제
- 건담
- 반다이몰
- 単語
- メソッド
- C로 시작하는 컴퓨터 프로그래밍4판
- 一日一つメソッド
- Flutter
- 인프런
- Python
- CSS
- nico
- Web
- java
- springboot
- jsp
- vscode
- 건담베이스
- rails7
- 디지몬
- ruby
- javascript
- 자바
- Spring
- DART
- Today
- Total
목록日本語/paiza (6)
AR삽질러
B020:ネットサーフィン B020:인터넷서핑 import java.util.*; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = Integer.parseInt(scanner.nextLine()); Stack stack = new Stack(); String currentPage = "blank page"; stack.push(currentPage); for (int i = 0; i < n; i++) { String query = scanner.nextLine(); if (query.equals("use the back button")) { if (stack..
C090:【40万人記念問題】黒電話 C090:【40만인기억문제】검정전화 あなたは黒電話を使ったことがあるでしょうか? 당신은 검정전화를 써번적이 있나요? 조건 다이얼 전화로 그림과 같은 입력형식이기 떄문에 몇개의 전화번호를 입력받은후 총거리를 계산한다. import java.util.*; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String phoneNumber = scan.nextLine(); scan.close(); int[] distance = {12, 3, 4, 5, 6, 7, 8, 9, 10, 11}; int totalDistance = 0; for (char c :..
D120:鉛筆の数 D120:연필의수 import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int number = sc.nextInt(); int result = number * 12; System.out.println(result); } } 12개가 하나인 연필이 들어있는 필통의 수를 입력받아 총연필의 수를 구하는 문제 1. Scanner sc = new Scanner(System.in); - java표준입출력 Scanner객체생성 - java標準入出力Scannerオブジェクトを作成 2. int number = sc.nextInt(); - 정수를 입력..
C064:paizaでお食事 C064:paiza에서의 식사 使用言語 : Python 사용언어 : Python food, employees = map(int, input().split()) calories_per_100g = [] for _ in range(food): calorie = int(input()) calories_per_100g.append(calorie) for _ in range(employees): menu = list(map(int, input().split())) total_calories = 0 for i in range(food): total_calories += calories_per_100g[i] * menu[i] // 100 print(total_calories) 설명 : 음식..
使用言語 : Python 사용언어 : Python budget, rides = input().split(' ') budget = int(budget) rides = int(rides) price_list = list() for i in range(rides): price = int(input()) price_list.append(price) point = 0 for price in price_list: if point >= price: point -= price else: budget -= price point += price * 0.1 print(budget, int(point)) 설명 : 사용자로부터 예산과 탑승횟수를 입력받아 각 탑승 횟수에 대한 예산과 포인트를 계산하는 문제 説明:ユーザーから予算と..
B128:簡易的二次元バーコード B128:간이적이차원바코드 import java.util.*; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String N = scanner.nextLine(); scanner.close(); char[][] grid = new char[3][N.length() * 3]; for (char[] row : grid) { Arrays.fill(row, '.'); } for (int i = 0; i < N.length(); i++) { int num = Character.getNumericValue(N.charAt(i)); for (int j..