結果
問題 |
No.537 ユーザーID
|
ユーザー |
![]() |
提出日時 | 2019-12-21 02:12:42 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 15 ms / 2,000 ms |
コード長 | 670 bytes |
コンパイル時間 | 2,099 ms |
コンパイル使用メモリ | 180,956 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 07:25:09 |
合計ジャッジ時間 | 3,043 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 32 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);++i) #define all(a) (a).begin(),(a).end() #define dunk(a) cout << (a) << endl using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(false); cin.tie(0); ll n; cin >> n; vector<string> ans; for (int i = 1; i <= sqrt(n); ++i) { if (n % i == 0) { if (ll(i * i) == n) { string c = to_string(i); ans.push_back(c + c); continue; } string a = to_string(i); string b = to_string(n / i); ans.push_back(a + b); ans.push_back(b + a); } } sort(all(ans)); auto result = unique(all(ans)); ans.erase(result, ans.end()); dunk(ans.size()); return 0; }