結果

問題 No.1343 Dividing Digit
ユーザー 遭難者遭難者
提出日時 2021-01-16 13:09:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 459 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 75,460 KB
実行使用メモリ 48,648 KB
最終ジャッジ日時 2024-05-05 15:00:21
合計ジャッジ時間 10,783 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,720 KB
testcase_01 AC 114 ms
40,976 KB
testcase_02 AC 104 ms
39,900 KB
testcase_03 AC 459 ms
48,600 KB
testcase_04 AC 185 ms
45,304 KB
testcase_05 AC 245 ms
47,600 KB
testcase_06 AC 212 ms
46,220 KB
testcase_07 AC 282 ms
47,552 KB
testcase_08 AC 367 ms
48,648 KB
testcase_09 AC 444 ms
48,328 KB
testcase_10 AC 203 ms
46,092 KB
testcase_11 AC 265 ms
47,608 KB
testcase_12 AC 410 ms
48,080 KB
testcase_13 AC 355 ms
47,972 KB
testcase_14 AC 201 ms
45,716 KB
testcase_15 AC 262 ms
47,460 KB
testcase_16 AC 211 ms
45,956 KB
testcase_17 AC 421 ms
48,548 KB
testcase_18 AC 401 ms
48,440 KB
testcase_19 AC 370 ms
48,240 KB
testcase_20 AC 295 ms
47,976 KB
testcase_21 AC 421 ms
48,512 KB
testcase_22 AC 414 ms
48,520 KB
testcase_23 AC 450 ms
48,604 KB
testcase_24 AC 406 ms
48,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
public class Main{
    public static void main(String[] args) {
        var sc = new Scanner(System.in);
        var ou = new PrintWriter(System.out);
        int n = Integer.parseInt(sc.next());
        int k = Integer.parseInt(sc.next());
        long x = 0;
        long y = 0;
        int[] a = new int[n];
        for(int i = 0 ; i < n ; i++) a[i] = Integer.parseInt(sc.next());
        for(int i = 0 ; i < n ; i++) y += a[i];
        for(int i = 0 ; i < n ; i++){
            x *= k;
            x += a[i];
            x %= y;
        }
        ou.println(x % y);
        sc.close();
        ou.flush();
    }
}
0