結果

問題 No.537 ユーザーID
ユーザー troro_kelptroro_kelp
提出日時 2018-08-28 16:46:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,079 bytes
コンパイル時間 797 ms
コンパイル使用メモリ 94,376 KB
実行使用メモリ 12,484 KB
最終ジャッジ日時 2023-09-23 00:04:31
合計ジャッジ時間 5,018 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
12,484 KB
testcase_01 AC 4 ms
8,156 KB
testcase_02 AC 4 ms
8,244 KB
testcase_03 AC 4 ms
8,232 KB
testcase_04 AC 4 ms
8,116 KB
testcase_05 AC 4 ms
8,248 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 4 ms
8,160 KB
testcase_10 AC 4 ms
8,172 KB
testcase_11 AC 4 ms
8,164 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <map>
#include <cmath>
#include <queue>
#include <numeric>
#include <climits>
#include <iterator>
#include <iomanip>
#include <stack>
#include <bitset>
#include <functional>
using namespace std;
const constexpr int INF = 1e9;
//typedef std::pair<std::string,double> P;


#define FOR(i, a, n) for (ll i = (ll)a; i<(ll)n; ++i)
#define REP(i, n) FOR(i, 0, n)

typedef long long ll;
typedef vector<int> VI;
const constexpr ll MOD = 1e9+7;
vector<pair<int, int> > vp;
 
struct Less {
    bool operator()(const pair<int, int>& x, const pair<int, int>& y) const {
        return x.first > y.first;
    }
};

ll GCD(ll a, ll b){
    if(b==0) return a;
    return GCD(b, a%b);
}


//グラフの隣接リスト
VI g[200010];
//頂点の入次数を管理
int h[100010];
string s;
int a[100010];
int b[100010]={INF};
int main(void) {
    int N; cin >> N;
    int cnt=0;
    int i=1;
    for(; i*i<N; ++i){
        if(N%i==0) cnt++;
    }
    
    cnt*=2;
    if(i*i==N) cnt++;
    cout << cnt << endl;
}
0