結果

問題 No.933 おまわりさんこいつです
ユーザー tentententen
提出日時 2020-08-26 17:15:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 2,982 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 51,700 KB
最終ジャッジ日時 2024-11-07 13:12:52
合計ジャッジ時間 9,873 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,424 KB
testcase_01 AC 125 ms
41,416 KB
testcase_02 AC 126 ms
41,228 KB
testcase_03 AC 133 ms
44,368 KB
testcase_04 AC 118 ms
40,312 KB
testcase_05 AC 128 ms
41,652 KB
testcase_06 AC 131 ms
41,412 KB
testcase_07 AC 132 ms
41,320 KB
testcase_08 AC 136 ms
41,488 KB
testcase_09 AC 136 ms
41,456 KB
testcase_10 AC 139 ms
41,532 KB
testcase_11 AC 162 ms
42,164 KB
testcase_12 AC 171 ms
42,412 KB
testcase_13 AC 204 ms
44,624 KB
testcase_14 AC 220 ms
45,772 KB
testcase_15 AC 265 ms
47,264 KB
testcase_16 AC 403 ms
47,804 KB
testcase_17 AC 559 ms
47,908 KB
testcase_18 AC 135 ms
41,316 KB
testcase_19 AC 560 ms
48,028 KB
testcase_20 AC 556 ms
47,644 KB
testcase_21 AC 123 ms
41,112 KB
testcase_22 AC 125 ms
41,244 KB
testcase_23 AC 657 ms
51,700 KB
testcase_24 AC 648 ms
51,684 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 ans = 1;
        for (int i = 0; i < n; i++) {
            ans *= getNum(sc.nextLong());
            ans = getNum(ans);
        }
        System.out.println(ans);
    }
    
    static int getNum(long x) {
        if (x < 10) {
            return (int)x;
        }
        int sum = 0;
        while (x > 0) {
            sum += (int)(x % 10);
            x /= 10;
        }
        return getNum(sum);
    }
}
0