結果
問題 | No.2016 Countdown Divisors |
ユーザー |
![]() |
提出日時 | 2022-07-22 22:13:49 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 22 ms / 2,000 ms |
コード長 | 1,508 bytes |
コンパイル時間 | 2,561 ms |
コンパイル使用メモリ | 194,492 KB |
最終ジャッジ日時 | 2025-01-30 12:29:01 |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 19 |
ソースコード
#include <bits/stdc++.h> //#include <atcoder/all> using namespace std; //using namespace atcoder; //using mint = modint1000000007; //const int mod = 1000000007; //using mint = modint998244353; //const int mod = 998244353; //const int INF = 1e9; //const long long LINF = 1e18; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rep2(i,l,r)for(int i=(l);i<(r);++i) #define rrep(i, n) for (int i = (n-1); i >= 0; --i) #define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i) #define all(x) (x).begin(),(x).end() #define allR(x) (x).rbegin(),(x).rend() #define endl "\n" #define P pair<int,int> template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; } template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; } //約数の個数 long long DivisorCount(long long n) { vector<long long> x; for (long long i = 2; i*i <= n; i++) { int c = 0; while (n%i == 0) { // 素数で割り切れなくなるまで割っていく c++;//割った個数を配列に足す n /= i; } if (0 != c) x.push_back(c); if (1 == n) break; } if (1 != n) x.push_back(1); long long nAns = 1; rep(i, x.size())nAns *= x[i] + 1; return nAns; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t; cin >> t; while (t--) { int n; cin >> n; if ((1 == n) || (3 == n) || (4 == n) || (5 == n) || (7 == n) || (8 == n))cout << 1 << endl; else cout << 2 << endl; } return 0; }