結果
問題 | No.2016 Countdown Divisors |
ユーザー | 沙耶花 |
提出日時 | 2022-07-22 21:34:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 179 ms / 2,000 ms |
コード長 | 737 bytes |
コンパイル時間 | 4,907 ms |
コンパイル使用メモリ | 268,144 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 05:35:13 |
合計ジャッジ時間 | 7,633 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 169 ms
6,944 KB |
testcase_02 | AC | 179 ms
6,940 KB |
testcase_03 | AC | 155 ms
6,940 KB |
testcase_04 | AC | 139 ms
6,940 KB |
testcase_05 | AC | 137 ms
6,944 KB |
testcase_06 | AC | 48 ms
6,940 KB |
testcase_07 | AC | 47 ms
6,940 KB |
testcase_08 | AC | 162 ms
6,940 KB |
testcase_09 | AC | 165 ms
6,944 KB |
testcase_10 | AC | 171 ms
6,940 KB |
testcase_11 | AC | 165 ms
6,944 KB |
testcase_12 | AC | 165 ms
6,940 KB |
testcase_13 | AC | 141 ms
6,940 KB |
testcase_14 | AC | 136 ms
6,940 KB |
testcase_15 | AC | 132 ms
6,940 KB |
testcase_16 | AC | 155 ms
6,944 KB |
testcase_17 | AC | 144 ms
6,940 KB |
testcase_18 | AC | 153 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,940 KB |
ソースコード
#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>=10){ cout<<2<<endl; continue; } while(N!=get(N)){ N -= get(N); } cout<<N<<endl; } return 0; }