結果
| 問題 | No.537 ユーザーID |
| コンテスト | |
| ユーザー |
m1025o1184t
|
| 提出日時 | 2019-12-21 02:03:26 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 435 bytes |
| 記録 | |
| コンパイル時間 | 1,364 ms |
| コンパイル使用メモリ | 167,648 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-18 07:12:49 |
| 合計ジャッジ時間 | 2,464 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 18 WA * 14 |
ソースコード
#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;
ll res = 0;
int del = 0;
for (int i = 1; i <= sqrt(n); ++i) {
if (n % i == 0) res++;
if (ll(i * i) == n) del++;
}
ll ans = 2ll * res - del;
dunk(ans);
return 0;
}
m1025o1184t