結果

問題 No.2016 Countdown Divisors
ユーザー 沙耶花沙耶花
提出日時 2022-07-22 21:32:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 683 bytes
コンパイル時間 4,980 ms
コンパイル使用メモリ 265,664 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-17 09:00:40
合計ジャッジ時間 8,047 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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;

bool check(int N){
	int ok = 0,ng = 40000;
	while(ng-ok>1){
		int m = (ok+ng)/2;
		if(m*m<=N)ok = m;
		else ng = m;
	}
	return N==ok*ok;
}

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;
		
		if(N!=1 && check(N))N--;
		
		cout<<2-N%2<<endl;
		
	}
    return 0;
}
0