結果

問題 No.1092 modular arithmetic
ユーザー tentententen
提出日時 2023-08-01 17:30:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 2,354 bytes
コンパイル時間 3,006 ms
コンパイル使用メモリ 92,464 KB
実行使用メモリ 46,504 KB
最終ジャッジ日時 2024-10-11 08:47:26
合計ジャッジ時間 12,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,932 KB
testcase_01 AC 250 ms
45,980 KB
testcase_02 AC 53 ms
36,652 KB
testcase_03 AC 294 ms
46,104 KB
testcase_04 AC 256 ms
45,624 KB
testcase_05 AC 246 ms
45,472 KB
testcase_06 AC 235 ms
44,776 KB
testcase_07 AC 248 ms
45,004 KB
testcase_08 AC 262 ms
45,760 KB
testcase_09 AC 234 ms
45,488 KB
testcase_10 AC 219 ms
44,824 KB
testcase_11 AC 229 ms
44,708 KB
testcase_12 AC 230 ms
44,756 KB
testcase_13 AC 165 ms
44,052 KB
testcase_14 AC 172 ms
44,376 KB
testcase_15 AC 111 ms
39,504 KB
testcase_16 AC 152 ms
43,564 KB
testcase_17 AC 185 ms
44,388 KB
testcase_18 AC 293 ms
46,044 KB
testcase_19 AC 225 ms
44,780 KB
testcase_20 AC 273 ms
46,132 KB
testcase_21 AC 244 ms
44,908 KB
testcase_22 AC 280 ms
46,080 KB
testcase_23 AC 324 ms
46,504 KB
testcase_24 AC 179 ms
41,428 KB
testcase_25 AC 288 ms
46,420 KB
testcase_26 AC 308 ms
46,444 KB
testcase_27 AC 119 ms
39,960 KB
testcase_28 AC 310 ms
45,980 KB
testcase_29 AC 366 ms
45,796 KB
testcase_30 AC 305 ms
45,648 KB
testcase_31 AC 117 ms
39,336 KB
testcase_32 AC 297 ms
45,664 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[] ops = sc.next().toCharArray();
        for (int i = 0; i < n - 1; i++) {
            if (ops[i] == '+') {
                ans += values[i];
            } else if (ops[i] == '-') {
                ans += MOD - values[i];
            } else if (ops[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