結果

問題 No.2016 Countdown Divisors
ユーザー 沙耶花沙耶花
提出日時 2022-07-22 21:28:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 550 bytes
コンパイル時間 4,582 ms
コンパイル使用メモリ 267,736 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-07-04 05:24:48
合計ジャッジ時間 7,730 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000

map<int,int> mp;

int get(int N){
	if(mp.count(N))return mp[N];
	int ret = 0;
	for(int i=1;i*i<=N;i++){
		if(N%i==0){
			ret++;
			if(i*i!=N)ret++;
		}
	}
	mp[N] = ret;
	return ret;
}

int main(){
	
	int _t;
	cin>>_t;
	
	rep(_,_t){
		int N;
		cin>>N;
		
		while(N!=get(N)){
			N -= get(N);
		}
		
		cout<<N<<endl;
		
	}
    return 0;
}
0