結果
問題 | No.1396 Giri |
ユーザー | tenten |
提出日時 | 2023-01-12 10:07:57 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 139 ms / 2,000 ms |
コード長 | 2,208 bytes |
コンパイル時間 | 2,275 ms |
コンパイル使用メモリ | 89,708 KB |
実行使用メモリ | 42,412 KB |
最終ジャッジ日時 | 2024-06-02 08:20:08 |
合計ジャッジ時間 | 5,390 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
36,968 KB |
testcase_01 | AC | 47 ms
37,156 KB |
testcase_02 | AC | 135 ms
42,188 KB |
testcase_03 | AC | 46 ms
37,124 KB |
testcase_04 | AC | 46 ms
37,244 KB |
testcase_05 | AC | 136 ms
42,412 KB |
testcase_06 | AC | 49 ms
36,872 KB |
testcase_07 | AC | 46 ms
37,212 KB |
testcase_08 | AC | 46 ms
37,296 KB |
testcase_09 | AC | 46 ms
36,824 KB |
testcase_10 | AC | 45 ms
37,248 KB |
testcase_11 | AC | 46 ms
37,048 KB |
testcase_12 | AC | 44 ms
37,228 KB |
testcase_13 | AC | 47 ms
37,160 KB |
testcase_14 | AC | 49 ms
37,020 KB |
testcase_15 | AC | 47 ms
37,148 KB |
testcase_16 | AC | 47 ms
37,244 KB |
testcase_17 | AC | 49 ms
37,228 KB |
testcase_18 | AC | 70 ms
38,112 KB |
testcase_19 | AC | 98 ms
40,260 KB |
testcase_20 | AC | 116 ms
40,948 KB |
testcase_21 | AC | 128 ms
41,588 KB |
testcase_22 | AC | 139 ms
42,044 KB |
testcase_23 | AC | 139 ms
41,972 KB |
testcase_24 | AC | 138 ms
41,972 KB |
testcase_25 | AC | 136 ms
42,120 KB |
ソースコード
import java.io.*; import java.util.*; 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[] nums = new int[n + 1]; for (int i = 1; i <= n; i++) { nums[i] = i; } int max = 0; long ans = 1; for (int i = 2; i <= n; i++) { ans *= nums[i]; ans %= MOD; max = Math.max(max, nums[i]); for (int j = 2; j * i <= n; j++) { nums[j * i] /= nums[i]; } } ans *= pow(max, MOD - 2); ans %= MOD; System.out.println(ans); } static long pow(long x, int p) { if (p == 0) { return 1; } else if (p % 2 == 0) { return pow(x * x % MOD, p / 2); } else { return pow(x, p - 1) * x % MOD; } } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }