結果

問題 No.537 ユーザーID
ユーザー Masanari KIMURAMasanari KIMURA
提出日時 2017-06-30 23:22:06
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 1,622 ms
コンパイル使用メモリ 174,660 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-04 21:26:53
合計ジャッジ時間 2,856 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

//#define _GRIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;

#define int long long

auto main() -> signed {
    int n;
    cin >> n;
    set<string> st;
    for(int i=1; i*i<=n; ++i) {
        if(n%i!=0) continue;
        int a = i;
        int b = n/i;
        st.insert(to_string(a)+to_string(b));
        st.insert(to_string(b)+to_string(a));
    }
    cout << st.size() << endl;
    return 0;
}

0