結果

問題 No.933 おまわりさんこいつです
ユーザー poi_kyopropoi_kyopro
提出日時 2019-11-29 22:43:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,447 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 77,420 KB
実行使用メモリ 117,044 KB
最終ジャッジ日時 2024-11-20 23:40:45
合計ジャッジ時間 20,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
46,572 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 130 ms
54,404 KB
testcase_04 AC 130 ms
46,964 KB
testcase_05 AC 134 ms
41,600 KB
testcase_06 AC 135 ms
41,292 KB
testcase_07 AC 137 ms
41,156 KB
testcase_08 AC 143 ms
41,588 KB
testcase_09 AC 142 ms
41,784 KB
testcase_10 AC 142 ms
41,564 KB
testcase_11 AC 178 ms
42,072 KB
testcase_12 AC 193 ms
42,564 KB
testcase_13 AC 285 ms
47,696 KB
testcase_14 AC 357 ms
47,804 KB
testcase_15 AC 552 ms
48,372 KB
testcase_16 AC 1,325 ms
59,688 KB
testcase_17 TLE -
testcase_18 WA -
testcase_19 TLE -
testcase_20 AC 1,307 ms
58,608 KB
testcase_21 AC 131 ms
41,128 KB
testcase_22 AC 129 ms
41,144 KB
testcase_23 TLE -
testcase_24 AC 1,578 ms
117,044 KB
権限があれば一括ダウンロードができます

ソースコード

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();
            if(num % 3 == 0){
                num = 3;
            }
            
            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