結果
問題 | No.414 衝動 |
ユーザー | alpha_virginis |
提出日時 | 2016-08-27 16:28:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,086 bytes |
コンパイル時間 | 1,598 ms |
コンパイル使用メモリ | 173,632 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-08 19:18:22 |
合計ジャッジ時間 | 2,819 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 5 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 4 ms
5,248 KB |
testcase_06 | AC | 4 ms
5,248 KB |
testcase_07 | RE | - |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 4 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> namespace Wheel { static constexpr uint64_t miniprimes[] = {2, 3, 5, 7, 11, 13}; static std::vector<int> diff; struct Initializer { Initializer() { uint64_t prev = 17; for(uint64_t i = 17 + 1; i <= 17 + 2 * 3 * 5 * 7 * 11 * 13; ++i) { auto checker = [](uint64_t i){ for(uint64_t p : miniprimes) { if( i % p == 0 ) return true; } return false; }; if( checker(i) ) continue; diff.push_back(i - prev); prev = i; } } } initializer; static bool isprime(uint64_t x) { for(uint64_t p : miniprimes) { if( p == x ) return true; if( x % p == 0 ) return false; } assert( x >= 17 ); for(uint64_t p = 17;;) { for(std::size_t k = 0; k < diff.size(); ++k) { if( x == p ) return true; if( x % p == 0 ) return false; p += diff[k]; if( p >= (1ULL << 32) ) return true; if( p * p > x ) return true; } } return true; } static std::vector< std::tuple<uint64_t, int> > primeFactors(uint64_t x) { std::vector< std::tuple<uint64_t, int> > res; for(uint64_t p : miniprimes) { int count = 0; while( x % p == 0 ) { x /= p; count += 1; } if( count != 0 ) { res.push_back(std::make_tuple(p, count)); } } for(uint64_t p = 17;;) { for(std::size_t k = 0; k < diff.size(); ++k) { int count = 0; while( x % p == 0 ) { x /= p; count += 1; } if( count != 0 ) { res.push_back(std::make_tuple(p, count)); } if( x == 1 ) goto label_1; p += diff[k]; if( p >= (1ULL << 32) ) goto label_1; if( p * p > x ) goto label_1; } } label_1:; if( x != 1 ) { res.push_back(std::make_tuple(x, 1)); } return res; } }; int main() { uint64_t x; scanf("%lu", &x); auto factors = Wheel::primeFactors(x); auto y = std::get<0>(factors[0]); printf("%lu %lu\n", y, x / y); return 0; }