/ neko /

记录详情

Accepted


  
# 状态 耗时 内存占用
#1 Accepted 86ms 9.164 MiB
#2 Accepted 86ms 9.164 MiB
#3 Accepted 91ms 9.164 MiB
#4 Accepted 91ms 9.176 MiB
#5 Accepted 83ms 9.207 MiB

代码

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner in=new Scanner(System.in);
        int n=in.nextInt();
        System.out.print(isUgly(n));

    }
    public static boolean isUgly(int num) {
        if (num==0)return false;
        if (num==1) return true;
        while (num!=1){
            if (num%2==0){
                num=num/2;
            }else if (num%3==0){
                num=num/3;
            }else if (num%5==0){
                num=num/5;
            }else return false;
        }
        return true;
    }
    }

信息

递交者
类型
递交
题目
P1003 1003.丑数
比赛
暑假摸鱼第一弹
题目数据
下载
语言
Java
递交时间
2021-01-24 20:43:45
评测时间
2021-02-05 23:11:34
评测机
分数
25
总耗时
439ms
峰值内存
9.207 MiB