結果

問題 No.1092 modular arithmetic
ユーザー tentententen
提出日時 2023-02-16 15:09:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 2,357 bytes
コンパイル時間 3,355 ms
コンパイル使用メモリ 90,340 KB
実行使用メモリ 47,480 KB
最終ジャッジ日時 2024-07-18 15:38:58
合計ジャッジ時間 12,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,308 KB
testcase_01 AC 249 ms
46,184 KB
testcase_02 AC 53 ms
37,332 KB
testcase_03 AC 254 ms
46,068 KB
testcase_04 AC 245 ms
45,692 KB
testcase_05 AC 246 ms
45,864 KB
testcase_06 AC 225 ms
44,904 KB
testcase_07 AC 238 ms
45,284 KB
testcase_08 AC 246 ms
46,172 KB
testcase_09 AC 238 ms
45,732 KB
testcase_10 AC 225 ms
45,024 KB
testcase_11 AC 228 ms
45,000 KB
testcase_12 AC 220 ms
45,072 KB
testcase_13 AC 166 ms
44,520 KB
testcase_14 AC 173 ms
44,372 KB
testcase_15 AC 101 ms
39,744 KB
testcase_16 AC 154 ms
43,988 KB
testcase_17 AC 184 ms
45,044 KB
testcase_18 AC 278 ms
47,108 KB
testcase_19 AC 223 ms
44,976 KB
testcase_20 AC 277 ms
46,964 KB
testcase_21 AC 248 ms
45,368 KB
testcase_22 AC 261 ms
46,236 KB
testcase_23 AC 358 ms
46,872 KB
testcase_24 AC 199 ms
42,424 KB
testcase_25 AC 319 ms
46,144 KB
testcase_26 AC 317 ms
46,832 KB
testcase_27 AC 125 ms
39,848 KB
testcase_28 AC 287 ms
46,608 KB
testcase_29 AC 343 ms
47,480 KB
testcase_30 AC 301 ms
46,148 KB
testcase_31 AC 116 ms
39,996 KB
testcase_32 AC 274 ms
46,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int MOD;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        MOD = sc.nextInt();
        int n = sc.nextInt();
        long ans = sc.nextInt();
        int[] values = new int[n - 1];
        for (int i = 0; i < n - 1; i++) {
            values[i] = sc.nextInt();
        }
        char[] opes = sc.next().toCharArray();
        for (int i = 0; i < n - 1; i++) {
            if (opes[i] == '+') {
                ans += values[i];
            } else if (opes[i] == '-') {
                ans += MOD - values[i];
            } else if (opes[i] == '*') {
                ans *= values[i];
            } else {
                ans *= pow(values[i], 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();
    }
    
}
0