結果

問題 No.933 おまわりさんこいつです
ユーザー poi_kyopropoi_kyopro
提出日時 2019-11-29 22:45:02
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,342 bytes
コンパイル時間 2,282 ms
コンパイル使用メモリ 75,592 KB
実行使用メモリ 98,688 KB
最終ジャッジ日時 2024-11-20 23:41:51
合計ジャッジ時間 17,475 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
46,868 KB
testcase_01 AC 119 ms
98,688 KB
testcase_02 AC 131 ms
46,448 KB
testcase_03 AC 136 ms
41,716 KB
testcase_04 AC 139 ms
41,724 KB
testcase_05 AC 140 ms
41,416 KB
testcase_06 AC 141 ms
41,652 KB
testcase_07 AC 144 ms
41,380 KB
testcase_08 AC 144 ms
41,244 KB
testcase_09 AC 144 ms
41,620 KB
testcase_10 AC 147 ms
41,320 KB
testcase_11 AC 183 ms
41,844 KB
testcase_12 AC 209 ms
43,044 KB
testcase_13 AC 334 ms
48,328 KB
testcase_14 AC 403 ms
48,136 KB
testcase_15 AC 619 ms
48,872 KB
testcase_16 AC 1,610 ms
60,024 KB
testcase_17 AC 631 ms
48,212 KB
testcase_18 AC 135 ms
41,368 KB
testcase_19 AC 777 ms
52,464 KB
testcase_20 AC 1,277 ms
58,392 KB
testcase_21 AC 120 ms
40,456 KB
testcase_22 AC 132 ms
41,364 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.math.BigInteger;

public class Main {
    public static void main(String args[]){
        Scanner stdIn = new Scanner(System.in);
        
        int n = stdIn.nextInt();
        //int b = stdIn.nextInt();
        //long p[] = new long[n];
        //String s = stdIn.next();
        //char c[] = s.toCharArray();
        BigInteger sum = BigInteger.valueOf(1);
        //boolean flag = true;
        
        for(int i = 0; i < n; i++){
            long num = stdIn.nextLong();
            
            sum = sum.multiply(BigInteger.valueOf(num));
        }
        
        long ans = 0;
        
        for(int j = 0; j < 1; j++){
            String s = String.valueOf(sum);
            char c[] = s.toCharArray();
            
            for(int i = 0; i < s.length(); i++){
                ans += c[i] - 48;
            }
        }
        
        while(true){
            String s = String.valueOf(ans);
            char c[] = s.toCharArray();
            
            ans = 0;
            
            for(int i = 0; i < s.length(); i++){
                ans += c[i] - 48;
            }
            
            if(ans <= 9){
                break;
            }
        }
        
        System.out.println(ans);
        
        //System.out.println();
        //System.out.print();
    }
}
0