結果
| 問題 | No.1092 modular arithmetic |
| ユーザー |
tenten
|
| 提出日時 | 2022-08-04 14:21:53 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 32 |
ソースコード
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();
}
}
tenten