算法编程

L1-005. 考试座位号

2017-03-12  本文已影响42人  Mr_欢先生

L1-005. 考试座位号

问题描述:
Paste_Image.png
java代码:
import java.util.Scanner;

/**考试座位号
 * Created by pc on 17-3-12.
 */
public class Main {
    public static void main (String[] args){
        Scanner input = new Scanner (System.in);
        int a=input.nextInt();
        String b[]=new String [a];
        int c[] = new int[a];
        int d[]= new int[a];

        for(int i= 0; i<a;i++){//依次存入信息
            b[i]=input.next();
            c[i]=input.nextInt();
            d[i]=input.nextInt();
        }
        int e=input.nextInt();//查找的个数
        int f[]=new int[e];
        for (int i=0 ; i<e;i++){
            f[i]=input.nextInt();//要查找的试机号
        }

        for(int i=0; i<e;i++){
            for (int j=0;j<a;j++){
                if(f[i]==c[j]){
                    System.out.println(b[j]+" "+d[j]);
                }
            }
        }
    }
}
结果[结果部分显示超时,如果可以优化该代码,可以给我留言]
Paste_Image.png
上一篇 下一篇

猜你喜欢

热点阅读