[白俊]10副題
8871 ワード
🐨 問題の説明
自動車10部制を実施し、自動車番号の日位数と日付の日位数が一致し、当該自動車の走行を禁止する.
これは、所定の日付の桁数において、5台の自動車のうち10部制に違反した自動車の数を出力する問題である.
>>>10副題
🐶 Javaプール import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public void solution() throws IOException {
//1.
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
//2.
int day = Integer.parseInt(br.readLine());
//3.
StringTokenizer st = new StringTokenizer(br.readLine());
int cnt = 0;
//4.
while(st.hasMoreTokens()){
//5.
if(day == Integer.parseInt(st.nextToken())){
cnt ++;
}
}
}
public static void main(String[] args) {
Main m = new Main();
try {
m.solution();
} catch (IOException e) {
e.printStackTrace();
}
}
}
-->草を見に行く
問題の説明
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public void solution() throws IOException {
//1.
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
//2.
int day = Integer.parseInt(br.readLine());
//3.
StringTokenizer st = new StringTokenizer(br.readLine());
int cnt = 0;
//4.
while(st.hasMoreTokens()){
//5.
if(day == Integer.parseInt(st.nextToken())){
cnt ++;
}
}
}
public static void main(String[] args) {
Main m = new Main();
try {
m.solution();
} catch (IOException e) {
e.printStackTrace();
}
}
}
-->草を見に行く 問題の説明
🐰 Pythonプール day = int(input())
arr = list(map(int, input().split()))
print(arr.count(car))
-->草を見に行く
やはりアルゴリズムはPython.
これは10部制の特定日曜日5台の自動車を含むarrリストです.
次に、出力時にarr.count(day)を使用してarrリストからday値に一致する要素の個数を返します.
パフォーマンス:
Reference
この問題について([白俊]10副題), 我々は、より多くの情報をここで見つけました
https://velog.io/@syveloper/백준-10부제
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
day = int(input())
arr = list(map(int, input().split()))
print(arr.count(car))
Reference
この問題について([白俊]10副題), 我々は、より多くの情報をここで見つけました https://velog.io/@syveloper/백준-10부제テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol