HWOJ合并表记录
作者:
Yuu_CX | 来源:发表于
2017-02-21 11:23 被阅读0次import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(sc.hasNext()){
int n1 = sc.nextInt();
int[] arr = new int[1000];
int temp;
for(int i=0;i<n1;i++){
temp = sc.nextInt();
if(arr[temp]>0){
arr[temp]+=sc.nextInt();
}else{
arr[temp]=sc.nextInt();
}
}
for(int j=0;j<n1;j++){
if(arr[j]>0){
System.out.println(j);
System.out.println(arr[j]);
}
}
}
sc.close();
}
}
本文标题:HWOJ合并表记录
本文链接:https://www.haomeiwen.com/subject/ssgywttx.html
网友评论