結果

問題 No.1343 Dividing Digit
ユーザー tentententen
提出日時 2022-09-26 18:01:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 1,284 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 77,688 KB
実行使用メモリ 56,172 KB
最終ジャッジ日時 2024-06-02 00:14:09
合計ジャッジ時間 7,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
49,952 KB
testcase_01 AC 51 ms
50,148 KB
testcase_02 AC 50 ms
50,464 KB
testcase_03 AC 197 ms
56,172 KB
testcase_04 AC 98 ms
51,912 KB
testcase_05 AC 117 ms
54,244 KB
testcase_06 AC 105 ms
52,004 KB
testcase_07 AC 137 ms
54,784 KB
testcase_08 AC 162 ms
55,116 KB
testcase_09 AC 190 ms
56,152 KB
testcase_10 AC 105 ms
52,132 KB
testcase_11 AC 140 ms
54,372 KB
testcase_12 AC 157 ms
55,324 KB
testcase_13 AC 159 ms
55,124 KB
testcase_14 AC 99 ms
52,044 KB
testcase_15 AC 135 ms
54,592 KB
testcase_16 AC 100 ms
52,068 KB
testcase_17 AC 184 ms
55,964 KB
testcase_18 AC 163 ms
55,188 KB
testcase_19 AC 161 ms
55,040 KB
testcase_20 AC 145 ms
54,868 KB
testcase_21 AC 174 ms
56,148 KB
testcase_22 AC 174 ms
55,132 KB
testcase_23 AC 174 ms
54,784 KB
testcase_24 AC 167 ms
55,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        long total = 0;
        long[] values = new long[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
            total += values[i];
        }
        long ans = 0;
        for (long x : values) {
            ans = (ans * k + x) % total;
        }
        System.out.println(ans);
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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();
    }
    
}
0