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

1088

时间:2018-10-07 13:02:24      阅读:390      评论:0      收藏:0      [点我收藏+]

标签:ax1   int   max   static   col   next   pre   company   class   

满分20,扣4分,4个答案正确,3个答案错误。

package com.company;

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

public class Main {

    public static void main(String[] args) {
    // write your code here
        Scanner sc=new Scanner(System.in);
        int m=sc.nextInt();
        int x=sc.nextInt();
        int y=sc.nextInt();
        int a,b,c;
        ArrayList<Integer> s1=new ArrayList<Integer>();
        ArrayList<Integer> s2=new ArrayList<Integer>();
        ArrayList<Integer> s3=new ArrayList<Integer>();
        for (a=10;a<100;a++){
            int s=a/10;
            int g=a-s*10;
            b=g*10+s;
            c=(Math.abs(a-b))/x;
            if ((Math.abs(a-b))%x==0){
                if (b==c*y){
                    s1.add(a);
                    s2.add(b);
                    s3.add(c);
                }
            }
        }
        int max1=s1.get(0);
        int max2=0,max3=0;
        for (int i=0;i<s1.size();i++){
            if (max1<s1.get(i)){
                max1=s1.get(i);
            }
        }
        for (int i=0;i<s1.size();i++){
            if (max1==s1.get(i)){
                max2=s2.get(i);
                max3=s3.get(i);
            }
        }
        System.out.print(max1+" ");
        if (m>max1){
            System.out.print("Gai ");
        }
        if (m<max1){
            System.out.print("Cong ");
        }
        if (m==max1){
            System.out.print("Ping ");
        }

        if (m>max2){
            System.out.print("Gai ");
        }
        if (m<max2){
            System.out.print("Cong ");
        }
        if (m==max2){
            System.out.print("Ping ");
        }

        if (m>max3){
            System.out.print("Gai");
        }
        if (m<max3){
            System.out.print("Cong");
        }
        if (m==max3){
            System.out.print("Ping");
        }
    }
}

 

1088

标签:ax1   int   max   static   col   next   pre   company   class   

原文地址:https://www.cnblogs.com/zhuzehua/p/9749744.html

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