結果

問題 No.1396 Giri
ユーザー tentententen
提出日時 2021-02-18 11:30:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 1,007 bytes
コンパイル時間 2,178 ms
コンパイル使用メモリ 83,348 KB
実行使用メモリ 58,192 KB
最終ジャッジ日時 2024-09-14 18:29:36
合計ジャッジ時間 7,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,224 KB
testcase_01 AC 132 ms
53,732 KB
testcase_02 AC 172 ms
57,996 KB
testcase_03 AC 132 ms
53,812 KB
testcase_04 AC 132 ms
53,848 KB
testcase_05 AC 171 ms
57,952 KB
testcase_06 AC 133 ms
53,728 KB
testcase_07 AC 134 ms
53,936 KB
testcase_08 AC 133 ms
54,180 KB
testcase_09 AC 132 ms
53,876 KB
testcase_10 AC 131 ms
53,848 KB
testcase_11 AC 132 ms
54,340 KB
testcase_12 AC 132 ms
53,860 KB
testcase_13 AC 133 ms
53,944 KB
testcase_14 AC 118 ms
52,940 KB
testcase_15 AC 132 ms
53,880 KB
testcase_16 AC 135 ms
53,836 KB
testcase_17 AC 134 ms
53,880 KB
testcase_18 AC 145 ms
53,808 KB
testcase_19 AC 158 ms
55,996 KB
testcase_20 AC 166 ms
56,164 KB
testcase_21 AC 168 ms
56,544 KB
testcase_22 AC 173 ms
57,868 KB
testcase_23 AC 174 ms
58,036 KB
testcase_24 AC 171 ms
58,192 KB
testcase_25 AC 170 ms
57,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] values = new int[n + 1];
        for (int i = 1; i <= n; i++) {
            values[i] = i;
        }
        for (int i = n; i >= 1; i--) {
            if (isPrime(i)) {
                values[i] = 1;
                break;
            }
        }
        long ans = 1;
        for (int i = 2; i <= n; i++) {
            ans *= values[i];
            ans %= MOD;
            if (values[i] == 1) {
                continue;
            }
            for (int j = 2; j * i <= n; j++) {
                values[j * i] /= values[i];
            }
        }
        System.out.println(ans);
    }
    
    static boolean isPrime(int x) {
        for (int i = 2; i <= Math.sqrt(x); i++) {
            if (x % i == 0) {
                return false;
            }
        }
        return true;
    }
}
0