結果
問題 | No.2016 Countdown Divisors |
ユーザー | chineristAC |
提出日時 | 2022-07-22 22:55:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 143 ms / 2,000 ms |
コード長 | 2,358 bytes |
コンパイル時間 | 3,224 ms |
コンパイル使用メモリ | 187,256 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 07:27:33 |
合計ジャッジ時間 | 6,494 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 136 ms
6,940 KB |
testcase_02 | AC | 143 ms
6,944 KB |
testcase_03 | AC | 129 ms
6,944 KB |
testcase_04 | AC | 112 ms
6,944 KB |
testcase_05 | AC | 103 ms
6,940 KB |
testcase_06 | AC | 39 ms
6,940 KB |
testcase_07 | AC | 39 ms
6,944 KB |
testcase_08 | AC | 139 ms
6,944 KB |
testcase_09 | AC | 135 ms
6,944 KB |
testcase_10 | AC | 142 ms
6,940 KB |
testcase_11 | AC | 139 ms
6,944 KB |
testcase_12 | AC | 135 ms
6,940 KB |
testcase_13 | AC | 126 ms
6,944 KB |
testcase_14 | AC | 121 ms
6,940 KB |
testcase_15 | AC | 122 ms
6,940 KB |
testcase_16 | AC | 136 ms
6,944 KB |
testcase_17 | AC | 125 ms
6,944 KB |
testcase_18 | AC | 128 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <map> #include <set> #include <queue> #include <algorithm> #include <cmath> #include <iomanip> #include <random> #include <stdio.h> #include <fstream> #include <functional> #include <cassert> #include <unordered_map> #include <bitset> #include <atcoder/all> using namespace std; using namespace atcoder; #define rep(i,n) for (int i=0;i<n;i+=1) #define rrep(i,n) for (int i=n-1;i>-1;i--) #define pb push_back #define all(x) (x).begin(), (x).end() template<class T> using vec = vector<T>; template<class T> using vvec = vec<vec<T>>; template<class T> using vvvec = vec<vvec<T>>; using ll = long long; using pii = pair<int,int>; using pll = pair<ll,ll>; template<class T> bool chmin(T &a, T b){ if (a>b){ a = b; return true; } return false; } template<class T> bool chmax(T &a, T b){ if (a<b){ a = b; return true; } return false; } template<class T> T sum(vec<T> x){ T res=0; for (auto e:x){ res += e; } return res; } template<class T> void printv(vec<T> x){ for (auto e:x){ cout<<e<<" "; } cout<<endl; } template<class T> ostream& operator<<(ostream& os, const vec<T>& A){ os << "{"; rep(i,A.size()){ os << A[i]; if (i!=A.size()-1){ os << ' '; } } os<<"}"; return os; } template<class T,class U> ostream& operator<<(ostream& os, const pair<T,U>& A){ os << "(" << A.first <<", " << A.second << ")"; return os; } template<class T> ostream& operator<<(ostream& os, const deque<T>& A){ os << "deque({"; rep(i,A.size()){ os << A[i]; if (i!=A.size()-1){ os << ' '; } } os<<"})"; return os; } int pow(int a, int b, int mod){ int res = 1; while (b){ if (b&1){ res = res * a % mod; } a = a * a % mod; b >>= 1; } return res; } using mint = modint998244353; const mint i10 = mint(10).inv(); int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int N = 100; vec<int> res(N+1); res[1] = 1; res[2] = 2; for (int i=3;i<=N;i++){ int d = 0; for (int j=1;j<=i;j++){ if ((i%j)==0){ d++; } } res[i] = res[i-d]; } int T; cin>>T; while (T--){ int N; cin>>N; if (10 <= N){ cout << 2 << endl; } else{ cout << res[N] << endl; } } }