結果

問題 No.1343 Dividing Digit
ユーザー tentententen
提出日時 2021-01-18 10:07:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 48,416 KB
最終ジャッジ日時 2024-11-30 21:25:38
合計ジャッジ時間 14,614 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,204 KB
testcase_01 AC 121 ms
39,748 KB
testcase_02 AC 134 ms
41,200 KB
testcase_03 AC 536 ms
48,228 KB
testcase_04 AC 261 ms
46,872 KB
testcase_05 AC 345 ms
46,180 KB
testcase_06 AC 295 ms
47,384 KB
testcase_07 AC 440 ms
47,948 KB
testcase_08 AC 571 ms
48,180 KB
testcase_09 AC 573 ms
48,104 KB
testcase_10 AC 288 ms
47,256 KB
testcase_11 AC 415 ms
48,036 KB
testcase_12 AC 538 ms
48,240 KB
testcase_13 AC 533 ms
48,000 KB
testcase_14 AC 288 ms
47,360 KB
testcase_15 AC 394 ms
47,676 KB
testcase_16 AC 287 ms
47,480 KB
testcase_17 AC 600 ms
48,256 KB
testcase_18 AC 596 ms
48,352 KB
testcase_19 AC 556 ms
47,884 KB
testcase_20 AC 438 ms
47,712 KB
testcase_21 AC 561 ms
48,312 KB
testcase_22 AC 587 ms
48,300 KB
testcase_23 AC 603 ms
48,416 KB
testcase_24 AC 540 ms
48,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		int[] arr = new int[n];
		int total = 0;
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		    total += arr[i];
		}
		long ans = 0;
		for (int i = 0; i < n; i++) {
		    ans *= k;
		    ans += arr[i];
		    ans %= total;
		}
		System.out.println(ans);
	}
}
0