結果

問題 No.2795 Perfect Number
ユーザー tobbietobbie
提出日時 2024-06-30 17:05:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 1,470 ms
コンパイル使用メモリ 166,428 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-06-30 17:05:08
合計ジャッジ時間 5,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,760 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)n; i++)
using ll = long long int;

int main() {
  ll N;
  cin >> N;
  ll ans = 0;
  ll n2 = N * 2;
  ll k = 1;
  ll kr = pow(N, 0.5);
  while (n2 - k > 0) {
    if (N % k == 0) {
      if (k == N / k) {
	n2 -= k;
	ans += k;
      } else {
	n2 -= k + N / k;
	ans += k + N / k;
      }
    }
    k++;
    if (N % kr == 0) {
      if (kr == N / kr) {
	n2 -= kr;
	ans += kr;
      } else {
	n2 -= kr + N / kr;
	ans += kr + N / kr;
      }
    }
    kr--;
  }
  if (ans == N * 2)
    cout << "Yes" << endl;
  else
    cout << "No" << endl;
  return 0;
}
0