結果

問題 No.1396 Giri
ユーザー 夜
提出日時 2021-02-14 21:35:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 820 bytes
コンパイル時間 724 ms
コンパイル使用メモリ 92,972 KB
実行使用メモリ 11,316 KB
最終ジャッジ日時 2024-07-22 08:58:09
合計ジャッジ時間 1,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 57 ms
11,248 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 53 ms
11,220 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 4 ms
6,940 KB
testcase_19 AC 24 ms
8,488 KB
testcase_20 AC 32 ms
9,652 KB
testcase_21 AC 45 ms
10,456 KB
testcase_22 AC 56 ms
11,084 KB
testcase_23 AC 55 ms
11,316 KB
testcase_24 AC 55 ms
11,296 KB
testcase_25 AC 54 ms
11,308 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:39:17: warning: 'no' may be used uninitialized [-Wmaybe-uninitialized]
   39 |                 if (i != no) {
      |                 ^~
main.cpp:19:22: note: 'no' was declared here
   19 |         long long n, no;
      |                      ^~

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
long long x[1000010];
int main() {
	long long n, no;
	long long mod = 998244353;
	cin >> n;
	for (int i = 1; i <= n; i++) {
		x[i] = 1;
	}
	for (int i = n; i > 0; i--) {
		bool bo = true;
		for (int j = 2; j * j <= n; j++) {
			if (i % j == 0) {
				bo = false;
			}
		}
		if (bo) {
			no = i;
			break;
		}
	}
	long long ans = 1;
	for (int i = 2; i <= n; i++) {
		if (i != no) {
			long long now = i / x[i];
			ans *= now;
			for (int j = i + i; j <= n; j += i) {
				x[j] *= now;
			}
			ans %= mod;
		}
	}
	cout << ans << endl;
}
0