結果

問題 No.1343 Dividing Digit
ユーザー ks2mks2m
提出日時 2021-01-16 13:17:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 1,934 ms
コンパイル使用メモリ 74,016 KB
実行使用メモリ 48,604 KB
最終ジャッジ日時 2024-11-27 13:31:35
合計ジャッジ時間 11,962 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
39,996 KB
testcase_01 AC 111 ms
40,556 KB
testcase_02 AC 98 ms
39,764 KB
testcase_03 AC 466 ms
48,140 KB
testcase_04 AC 224 ms
46,316 KB
testcase_05 AC 283 ms
46,744 KB
testcase_06 AC 264 ms
46,560 KB
testcase_07 AC 348 ms
47,692 KB
testcase_08 AC 483 ms
48,200 KB
testcase_09 AC 493 ms
48,284 KB
testcase_10 AC 239 ms
47,180 KB
testcase_11 AC 336 ms
48,012 KB
testcase_12 AC 467 ms
48,216 KB
testcase_13 AC 425 ms
48,196 KB
testcase_14 AC 237 ms
47,108 KB
testcase_15 AC 329 ms
47,828 KB
testcase_16 AC 238 ms
47,192 KB
testcase_17 AC 464 ms
48,500 KB
testcase_18 AC 490 ms
48,216 KB
testcase_19 AC 446 ms
47,816 KB
testcase_20 AC 361 ms
47,564 KB
testcase_21 AC 514 ms
48,260 KB
testcase_22 AC 471 ms
48,240 KB
testcase_23 AC 523 ms
48,604 KB
testcase_24 AC 452 ms
48,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		long m = 0;
		for (int i = 0; i < n; i++) {
			m += a[i];
		}

		long ans = 0;
		long ki = 1;
		for (int i = 0; i < n; i++) {
			long c = a[n - 1 - i] * ki % m;
			ans += c;
			ans %= m;
			ki *= k;
			ki %= m;
		}
		System.out.println(ans);
	}
}
0