結果

問題 No.1092 modular arithmetic
ユーザー tentententen
提出日時 2022-08-04 14:21:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 1,794 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 76,900 KB
実行使用メモリ 47,200 KB
最終ジャッジ日時 2024-09-14 10:47:07
合計ジャッジ時間 12,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,860 KB
testcase_01 AC 258 ms
45,956 KB
testcase_02 AC 53 ms
36,492 KB
testcase_03 AC 298 ms
45,908 KB
testcase_04 AC 239 ms
45,296 KB
testcase_05 AC 250 ms
45,340 KB
testcase_06 AC 230 ms
44,580 KB
testcase_07 AC 248 ms
44,996 KB
testcase_08 AC 250 ms
46,288 KB
testcase_09 AC 244 ms
45,056 KB
testcase_10 AC 234 ms
44,844 KB
testcase_11 AC 241 ms
44,800 KB
testcase_12 AC 247 ms
44,984 KB
testcase_13 AC 156 ms
43,536 KB
testcase_14 AC 176 ms
44,384 KB
testcase_15 AC 113 ms
40,456 KB
testcase_16 AC 150 ms
43,908 KB
testcase_17 AC 188 ms
44,544 KB
testcase_18 AC 261 ms
45,896 KB
testcase_19 AC 225 ms
44,440 KB
testcase_20 AC 262 ms
47,200 KB
testcase_21 AC 241 ms
45,276 KB
testcase_22 AC 271 ms
45,908 KB
testcase_23 AC 314 ms
46,264 KB
testcase_24 AC 180 ms
41,112 KB
testcase_25 AC 311 ms
46,140 KB
testcase_26 AC 302 ms
46,520 KB
testcase_27 AC 131 ms
39,868 KB
testcase_28 AC 281 ms
46,352 KB
testcase_29 AC 337 ms
47,144 KB
testcase_30 AC 292 ms
46,420 KB
testcase_31 AC 116 ms
39,564 KB
testcase_32 AC 278 ms
45,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        long ans = values[0];
        char[] opps = sc.next().toCharArray();
        for (int i = 1; i < n; i++) {
            if (opps[i - 1] == '+') {
                ans += values[i];
            } else if (opps[i - 1] == '-') {
                ans += mod - values[i];
            } else if (opps[i - 1] == '*') {
                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 Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0