結果

問題 No.1396 Giri
ユーザー どららどらら
提出日時 2021-02-14 22:31:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 691 bytes
コンパイル時間 1,638 ms
コンパイル使用メモリ 166,256 KB
実行使用メモリ 11,432 KB
最終ジャッジ日時 2024-07-22 10:19:17
合計ジャッジ時間 7,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
11,432 KB
testcase_01 AC 193 ms
11,364 KB
testcase_02 AC 190 ms
11,280 KB
testcase_03 AC 192 ms
11,256 KB
testcase_04 AC 188 ms
11,288 KB
testcase_05 AC 200 ms
11,320 KB
testcase_06 AC 195 ms
11,300 KB
testcase_07 AC 202 ms
11,296 KB
testcase_08 AC 197 ms
11,160 KB
testcase_09 AC 198 ms
11,260 KB
testcase_10 AC 192 ms
11,196 KB
testcase_11 AC 185 ms
11,100 KB
testcase_12 AC 187 ms
11,316 KB
testcase_13 AC 188 ms
11,100 KB
testcase_14 AC 191 ms
11,272 KB
testcase_15 AC 191 ms
11,288 KB
testcase_16 AC 191 ms
11,248 KB
testcase_17 AC 185 ms
11,248 KB
testcase_18 AC 185 ms
11,228 KB
testcase_19 AC 194 ms
11,248 KB
testcase_20 AC 189 ms
11,184 KB
testcase_21 AC 197 ms
11,320 KB
testcase_22 AC 193 ms
11,216 KB
testcase_23 AC 195 ms
11,256 KB
testcase_24 AC 191 ms
11,252 KB
testcase_25 AC 192 ms
11,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

#define MOD 998244353

ll dp[1000005];

int main(){
  int N;
  cin >> N;

  rep(i,1000005) dp[i] = i;
  REP(i,2,1000005){
    for(int j=i*2;j<1000005;j+=i){
      dp[j] /= dp[i];
    }
  }

  for(int i=N; i>=0; i--){
    if(dp[i] == i){
      dp[i] = 1;
      break;
    }
  }
  
  ll ret = 1;
  REP(i,1,N+1){
    ret *= dp[i];
    ret %= MOD;
  }

  cout << ret << endl;
  
  return 0;
}

0