码迷,mamicode.com
首页 > 其他好文 > 详细

PAT1005

时间:2018-03-24 12:44:23      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:valueof   gpo   get   ted   size   add   new   eth   integer   

代码如下:

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner input = new Scanner(System.in);
        int num = input.nextInt();
        ArrayList<Integer> arrList = new ArrayList<Integer>();
        for(int i = 0;i<num;i++){
            arrList.add(input.nextInt());
        }
        ArrayList<Integer> arrListTemp = new ArrayList<Integer>(arrList);
        for(int j = 0;j<num;j++){
            int temp = arrListTemp.get(j);
            while(temp!=1){
                if(temp%2==1){
                    temp = (temp*3+1)>>1;
                    if(arrList.contains(temp)){
                        arrList.remove(Integer.valueOf(temp));
                    }
                }else{
                    temp = temp>>1;
                    if(arrList.contains(temp)){
                        arrList.remove(Integer.valueOf(temp));
                    }
                }
            }
        }
        Collections.sort(arrList,Collections.reverseOrder());
        for(int k = 0;k<arrList.size();k++){
            if(k==(arrList.size()-1)){
                System.out.print(arrList.get(k));
            }else{
                System.out.print(arrList.get(k)+" ");
            }
        }
    }
}

 

PAT1005

标签:valueof   gpo   get   ted   size   add   new   eth   integer   

原文地址:https://www.cnblogs.com/LoganChen/p/8638345.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!