結果
| 問題 |
No.1343 Dividing Digit
|
| コンテスト | |
| ユーザー |
xRS43BofaUEZ5gc
|
| 提出日時 | 2021-03-08 11:02:48 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 573 ms / 2,000 ms |
| コード長 | 578 bytes |
| コンパイル時間 | 3,233 ms |
| コンパイル使用メモリ | 74,128 KB |
| 実行使用メモリ | 48,600 KB |
| 最終ジャッジ日時 | 2024-10-09 20:05:24 |
| 合計ジャッジ時間 | 14,378 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
import java.util.Scanner;
public class HelloWorld {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int k = sc.nextInt();
int[] ai_Array = new int[n];
long sum = 0;
long sum_bit = 0;
for (int i = 0; i < n; i ++) {
ai_Array[i] = sc.nextInt();
sum_bit += ai_Array[i];
}
sc.close();
for (int i = 0; i < n; i ++ ) {
sum = sum * k + ai_Array[i];
sum %= sum_bit;
}
System.out.println(sum);
}
}
xRS43BofaUEZ5gc