結果

問題 No.537 ユーザーID
ユーザー Hoget157Hoget157
提出日時 2017-06-30 22:35:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 991 ms
コンパイル使用メモリ 83,956 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-04 20:15:25
合計ジャッジ時間 2,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <cmath>
#define int long long
using namespace std;

signed main() {
	int n;
	map<string,bool> mp;
	cin >> n;
	for(int i = 1;i * i <= n;i++){
		if(n % i == 0){
			mp[to_string(i) + to_string(n / i)] = true;
			mp[to_string(n / i) + to_string(i)] = true;
		}
	}
	cout << mp.size() << endl;
	return 0;
}
0