PAT1005

Posted alittlecomputer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT1005相关的知识,希望对你有一定的参考价值。

代码如下:

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的主要内容,如果未能解决你的问题,请参考以下文章

Pat1005:Spell It Right

JAVA1005 继续(3n+1)猜想 (25分) PAT乙级 PAT (Basic Level)Practice (中文)

PAT 乙级 1005. 继续(3n+1)猜想 (25)

PAT-GPLT训练集 L1-039 古风排版

PAT 1005. Spell It Right

PAT甲级——1005.SpellItRight(20分)