結果

問題 No.933 おまわりさんこいつです
ユーザー htensaihtensai
提出日時 2019-12-09 21:44:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 51,460 KB
最終ジャッジ日時 2024-06-23 06:24:35
合計ジャッジ時間 8,293 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,388 KB
testcase_01 AC 107 ms
41,224 KB
testcase_02 AC 107 ms
41,244 KB
testcase_03 AC 110 ms
41,056 KB
testcase_04 AC 104 ms
39,984 KB
testcase_05 AC 127 ms
41,128 KB
testcase_06 AC 126 ms
40,964 KB
testcase_07 AC 112 ms
40,372 KB
testcase_08 AC 118 ms
41,368 KB
testcase_09 AC 127 ms
41,368 KB
testcase_10 AC 123 ms
41,420 KB
testcase_11 AC 152 ms
41,404 KB
testcase_12 AC 154 ms
41,584 KB
testcase_13 AC 185 ms
44,308 KB
testcase_14 AC 193 ms
45,324 KB
testcase_15 AC 239 ms
47,000 KB
testcase_16 AC 345 ms
47,304 KB
testcase_17 AC 397 ms
46,712 KB
testcase_18 AC 111 ms
40,960 KB
testcase_19 AC 492 ms
47,720 KB
testcase_20 AC 418 ms
46,440 KB
testcase_21 AC 119 ms
41,088 KB
testcase_22 AC 102 ms
39,868 KB
testcase_23 AC 583 ms
51,452 KB
testcase_24 AC 546 ms
51,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long ans = 1;
        for (int i = 0; i < n; i++) {
            ans = getOne(ans * getOne(sc.nextLong()));
        }
        System.out.println(ans);
    }
    
    static long getOne(long x) {
        while (x >= 10) {
            long y = 0;
            while (x > 0) {
                y += x % 10;
                x /= 10;
            }
            x = y;
        }
        return x;
    }
}
0