/ neko /

记录详情

Time Exceeded


  
# 状态 耗时 内存占用
#1 Accepted 2ms 384.0 KiB
#2 Accepted 2ms 384.0 KiB
#3 Accepted 2ms 384.0 KiB
#4 Accepted 2ms 384.0 KiB
#5 Time Exceeded ≥1845ms ≥384.0 KiB

代码

#include<iostream>
using namespace std;
int main(){
	int n;
	cin >> n;
	int a[3]={2,3,5};
	int i=0;
	while(1){
		for( i=0; i<3; i++){
			if(n%a[i]==0){
				n /=a[i];
				break;
			}else{
				continue;
			}
		}
		if(n==1){
			cout << "true";
			break;
		}
		if(i==3){
			cout << "false";
			break;
		}
	}
	return 0;
}

信息

递交者
类型
递交
题目
P1003 1003.丑数
比赛
暑假摸鱼第一弹
题目数据
下载
语言
C++
递交时间
2021-01-24 21:42:02
评测时间
2021-01-24 21:42:02
评测机
分数
20
总耗时
≥1854ms
峰值内存
≥384.0 KiB