結果

問題 No.2079 aaabbc
ユーザー 👑 p-adicp-adic
提出日時 2022-09-04 11:21:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,069 ms / 2,000 ms
コード長 977 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 199,816 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 10:43:13
合計ジャッジ時間 4,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 19 ms
5,376 KB
testcase_07 AC 343 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1,069 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 142 ms
5,376 KB
testcase_12 AC 73 ms
5,376 KB
testcase_13 AC 595 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 嘘解法チェックその2
#include<bits/stdc++.h>
using namespace std;

using ll = long long;

#define CIN( LL , A ) LL A; cin >> A 
#define FOR( VAR , INITIAL , FINAL_PLUS_ONE ) for( ll VAR = INITIAL ; VAR < FINAL_PLUS_ONE ; VAR ++ ) 
#define RETURN( ANSWER ) cout << ( ANSWER ) << "\n"; return 0 

constexpr const ll P = 998244353;

int main(){
  CIN( ll , N );
  N %= P - 1;
  if( N == 0 ){
    RETURN( 1 );
  }
  ll pf[30];
  ll num = 0;
  ll p = 2;
  if( N % p == 0 ){
    pf[num] = p;
    num++;
    N /= p;
    while( N % p == 0 ){
      pf[num] = p;
      num++;
      N /= p;
    }
  }
  p++;
  while( N != 1 ){
    if( N % p == 0 ){
      pf[num] = p;
      num++;
      N /= p;
      while( N % p == 0 ){
	pf[num] = p;
	num++;
	N /= p;
      }
    }
    p += 2;
  }
  ll answer = 3;
  FOR( i , 0 , num ){
    ll& pfi = pf[i];
    ll power = 1;
    FOR( j , 0 , pfi ){
      power = ( power * answer ) % P;
    }
    answer = power;
  }
  RETURN( answer );
}
0