結果
問題 | No.537 ユーザーID |
ユーザー |
![]() |
提出日時 | 2017-07-03 21:10:38 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 22 ms / 2,000 ms |
コード長 | 631 bytes |
コンパイル時間 | 2,428 ms |
コンパイル使用メモリ | 202,036 KB |
最終ジャッジ日時 | 2025-01-05 01:01:53 |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 32 |
ソースコード
#include "bits/stdc++.h"#define rep(a,b) for(int a = 0;a < b;a++)#define REP(i, x, n) for(int i = x; i < n; i++)#define P(a) cout << a << endlusing namespace std;typedef long long ll;typedef unsigned long long ull;int dx[] = { 1, -1 , 0 , 0 };int dy[] = { 0, 0, 1, -1 };unsigned long long str_to_int(std::string str) {unsigned long long ret;std::stringstream ss; ss << str;ss >> ret;return ret;}int main() {ll n;cin >> n;set<string> s;for (ll i = 1; i*i <= n; i++) {if (n % i == 0) {s.insert(to_string(i) + to_string(n / i));s.insert(to_string(n/i) + to_string(i));}}P(s.size());}