全部评论
myList = list(map(int,input().split(""))) # 这样通过率91%
myList = list(map(int,input().split(" "))) # 这样通过率9%
爱奇艺就喜欢卡测试集
+1 我也是!
输入的问题,我java一开始nextLine()就9%,改成next()读字符再读数字就没问题
凑巧,就用了个HashMap最后遍历hashmap一趟,大于则++。 import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class Mainh {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
while (scanner.hasNext()) {
String[] line1 = scanner.nextLine().split(" ");
int target = Integer.valueOf(line1[2]);
String[] remain = scanner.nextLine().split(" ");
HashMap<Integer, Integer> hashMap = new HashMap<>();
for (int i = 0; i < remain.length; i++) {
hashMap.put(i+1,Integer.valueOf(remain[i]));
}
int nextLines = Integer.valueOf(line1[1]);
String tmp;
int key;
while (nextLines > 0){
tmp = scanner.nextLine();
key = Integer.valueOf(tmp.split(" ")[1]);
if (tmp.contains("A")){
hashMap.put(key, hashMap.get(key) + 1);
}else hashMap.put(key, hashMap.get(key) - 1);
nextLines--;
}
int topK = 1;
int targetValue = hashMap.get(target);
for (Map.Entry<Integer, Integer> entry : hashMap.entrySet()) {
if (Integer.valueOf(entry.getValue()) > targetValue){
topK += 1;
}
}
System.out.println(topK);
}
}
}
/*
3 4 2
5 3 1
B 1
A 2
A 2
A 3
*/
,……
幸运id老是91% 求指导,求代码
走了他
各位哥,笔试还没结束呢。。
两道测试题的测试集都有毒吧!
相关推荐
点赞 评论 收藏
分享
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享