結果
問題 | No.537 ユーザーID |
ユーザー | toku |
提出日時 | 2019-02-03 16:10:53 |
言語 | C++11 (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,022 bytes |
コンパイル時間 | 1,428 ms |
コンパイル使用メモリ | 168,368 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-12-17 16:58:06 |
合計ジャッジ時間 | 53,608 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,640 KB |
testcase_01 | AC | 1 ms
10,016 KB |
testcase_02 | AC | 2 ms
13,636 KB |
testcase_03 | AC | 2 ms
10,016 KB |
testcase_04 | AC | 1 ms
13,632 KB |
testcase_05 | AC | 2 ms
10,016 KB |
testcase_06 | AC | 2 ms
13,636 KB |
testcase_07 | AC | 2 ms
10,016 KB |
testcase_08 | AC | 2 ms
13,636 KB |
testcase_09 | AC | 2 ms
10,016 KB |
testcase_10 | AC | 2 ms
13,640 KB |
testcase_11 | AC | 2 ms
9,896 KB |
testcase_12 | AC | 2 ms
13,640 KB |
testcase_13 | AC | 2 ms
10,020 KB |
testcase_14 | AC | 2 ms
10,020 KB |
testcase_15 | AC | 2 ms
13,632 KB |
testcase_16 | AC | 2 ms
13,640 KB |
testcase_17 | AC | 2 ms
10,016 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define REP(i,n) for(int i=0; i<int(n); i++) #define FOR(i,m,n) for(int i=int(m); i<int(n); i++) #define ALL(obj) (obj).begin(),(obj).end() #define VI vector<int> #define VLL vector<long long> #define VVI vector<vector<int>> #define VVLL vector<vector<long long>> #define VC vector<char> #define VS vector<string> #define VVC vector<vector<char>> #define fore(i,a) for(auto &i:a) typedef pair <int, int> P; template<class T> bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } const int INF = 2147483647; const ll INFL = 9223372036854775807; const ll mod = 1000000007; int main() { ll n; cin >> n; int i; set<string> s; for (int i = 1; i*i <= n; i++) { if (n%i != 0)continue; int j = n / i; s.insert(to_string(i) + to_string(j)); s.insert(to_string(j) + to_string(i)); } cout << s.size() << endl; return 0; }