結果

問題 No.1396 Giri
ユーザー tentententen
提出日時 2024-07-23 09:30:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 1,846 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 80,052 KB
実行使用メモリ 56,632 KB
最終ジャッジ日時 2024-07-23 09:30:15
合計ジャッジ時間 6,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
51,276 KB
testcase_01 AC 68 ms
51,120 KB
testcase_02 AC 179 ms
56,548 KB
testcase_03 AC 67 ms
51,212 KB
testcase_04 AC 68 ms
50,836 KB
testcase_05 AC 169 ms
56,100 KB
testcase_06 AC 68 ms
51,056 KB
testcase_07 AC 69 ms
51,164 KB
testcase_08 AC 66 ms
50,544 KB
testcase_09 AC 66 ms
50,812 KB
testcase_10 AC 69 ms
51,028 KB
testcase_11 AC 67 ms
51,060 KB
testcase_12 AC 71 ms
51,224 KB
testcase_13 AC 68 ms
50,760 KB
testcase_14 AC 68 ms
50,696 KB
testcase_15 AC 68 ms
51,068 KB
testcase_16 AC 77 ms
50,932 KB
testcase_17 AC 75 ms
51,416 KB
testcase_18 AC 82 ms
51,596 KB
testcase_19 AC 131 ms
54,568 KB
testcase_20 AC 148 ms
54,020 KB
testcase_21 AC 163 ms
54,864 KB
testcase_22 AC 171 ms
56,288 KB
testcase_23 AC 170 ms
56,388 KB
testcase_24 AC 199 ms
56,632 KB
testcase_25 AC 174 ms
56,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int prime = n;
        while (!isPrime(prime)) {
            prime--;
        }
        int[] values = IntStream.rangeClosed(0, n).toArray();
        values[prime] = 1;
        long ans = 1;
        for (int i = 2; i <= n; i++) {
            if (i > 1) {
                ans *= values[i];
                ans %= MOD;
                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;
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0