結果

問題 No.300 平方数
ユーザー kuisibakuisiba
提出日時 2016-10-28 17:39:33
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 55,856 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-24 05:14:02
合計ジャッジ時間 33,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cstdint>

using namespace std;

int main() {

  ios::sync_with_stdio(false);
  cin.tie(0);

  int64_t n;
  cin >> n;
  if (n == 1) {
    cout << "1" << endl;
    return 0;
  }
  int ans = 1;
  int count = 0;
  for (int i = 2; i * i <= n; i++) {
    while (n % i == 0) {
      n /= i;
      count++;
    }
    if (count & 1) {
      ans *= i;
    }
  }
  if (n > 1) {
    ans *= n;
  }
  cout << ans << endl;
}
0