結果

問題 No.933 おまわりさんこいつです
ユーザー Nitish SongaraNitish Songara
提出日時 2020-10-13 20:29:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 4,012 ms
コンパイル使用メモリ 80,840 KB
実行使用メモリ 62,332 KB
最終ジャッジ日時 2024-07-20 18:46:44
合計ジャッジ時間 9,957 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,128 KB
testcase_01 AC 136 ms
40,944 KB
testcase_02 AC 136 ms
40,956 KB
testcase_03 AC 137 ms
41,116 KB
testcase_04 AC 137 ms
40,860 KB
testcase_05 AC 134 ms
41,352 KB
testcase_06 AC 136 ms
41,024 KB
testcase_07 AC 133 ms
40,976 KB
testcase_08 AC 130 ms
41,248 KB
testcase_09 AC 128 ms
40,876 KB
testcase_10 AC 130 ms
41,144 KB
testcase_11 AC 141 ms
41,372 KB
testcase_12 AC 151 ms
41,136 KB
testcase_13 AC 191 ms
41,788 KB
testcase_14 AC 205 ms
42,368 KB
testcase_15 AC 210 ms
43,220 KB
testcase_16 AC 290 ms
47,352 KB
testcase_17 AC 358 ms
52,372 KB
testcase_18 AC 134 ms
41,164 KB
testcase_19 AC 422 ms
56,700 KB
testcase_20 AC 332 ms
51,380 KB
testcase_21 AC 129 ms
41,080 KB
testcase_22 AC 127 ms
40,988 KB
testcase_23 AC 474 ms
62,332 KB
testcase_24 AC 479 ms
62,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class SSd {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = Integer.parseInt(sc.nextLine().trim());
        String ar[] = sc.nextLine().split(" ");
        long mul = 1;
        long nums[] = new long[n];
        for(int i=0;i<n;i++) {
            long cur = Long.parseLong(ar[i]);
            mul *= getSum(cur);
            mul = getSum(mul);
        }
        while(mul>10)
            mul =getSum(mul);
        System.out.println(mul);
    }
    static long getSum(long n){
        long sum = 0;
        while(n!=0){
            sum += n%10;
            n /= 10;
        }
        return sum;
    }
}
0